diff options
| author | stkhan <personal@slickd.xyz> | 2021-05-25 01:53:52 +0000 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2021-05-25 01:53:52 +0000 |
| commit | 87ded319c6b8fe561c471ed154a75404c0d9889a (patch) | |
| tree | 8330e380a36a0e1b10bc512cf861888bd24631aa /surf-2.1/surf-open.sh | |
| parent | 3eb0ac722dc7ea58bdd9b90d76f62048814bb937 (diff) | |
Replaced falkon for surf
Diffstat (limited to 'surf-2.1/surf-open.sh')
| -rwxr-xr-x | surf-2.1/surf-open.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/surf-2.1/surf-open.sh b/surf-2.1/surf-open.sh new file mode 100755 index 0000000..c22edc2 --- /dev/null +++ b/surf-2.1/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 + |