diff options
author | joe <rbo@gmx.us> | 2025-09-30 18:03:23 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-09-30 18:03:23 +0200 |
commit | 29dab718af747d7b8207c1cbfb49de65f0a26306 (patch) | |
tree | 69493e61ed9702b33d45436d06c040bc4456571c /surf-open.sh | |
download | surf-29dab718af747d7b8207c1cbfb49de65f0a26306.tar.gz surf-29dab718af747d7b8207c1cbfb49de65f0a26306.tar.bz2 surf-29dab718af747d7b8207c1cbfb49de65f0a26306.tar.xz surf-29dab718af747d7b8207c1cbfb49de65f0a26306.tar.zst surf-29dab718af747d7b8207c1cbfb49de65f0a26306.zip |
surfin
Diffstat (limited to 'surf-open.sh')
-rwxr-xr-x | surf-open.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/surf-open.sh b/surf-open.sh new file mode 100755 index 0000000..c22edc2 --- /dev/null +++ b/surf-open.sh @@ -0,0 +1,32 @@ +#!/bin/sh +# +# See the LICENSE file for copyright and license details. +# + +xidfile="$HOME/tmp/tabbed-surf.xid" +uri="" + +if [ "$#" -gt 0 ]; +then + uri="$1" +fi + +runtabbed() { + tabbed -dn tabbed-surf -r 2 surf -e '' "$uri" >"$xidfile" \ + 2>/dev/null & +} + +if [ ! -r "$xidfile" ]; +then + runtabbed +else + xid=$(cat "$xidfile") + xprop -id "$xid" >/dev/null 2>&1 + if [ $? -gt 0 ]; + then + runtabbed + else + surf -e "$xid" "$uri" >/dev/null 2>&1 & + fi +fi + |