diff options
| author | stkhan <personal@slickd.xyz> | 2022-04-21 17:15:27 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-04-21 17:15:27 -0500 |
| commit | 6d5f8c137608df2e459c9865efa19c72856ed6e8 (patch) | |
| tree | bde7ebb7e20ac737d10c25b6503228395645a8db /surf/surf-open.sh | |
| parent | df966cab682c913e8b62b460c9ef900e1046863f (diff) | |
added stuff:
Diffstat (limited to 'surf/surf-open.sh')
| -rwxr-xr-x | surf/surf-open.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/surf/surf-open.sh b/surf/surf-open.sh new file mode 100755 index 0000000..c22edc2 --- /dev/null +++ b/surf/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 + |