summaryrefslogtreecommitdiff
path: root/utils/surf/surf-open.sh
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-19 11:03:17 -0500
committerstkhan <personal@slickd.xyz>2023-03-19 11:03:17 -0500
commit3cfd05f026f56149d96dde75727f4ca5dd417ca6 (patch)
treefffeec8cbfee66d8d13c601ceeadfeb96261c681 /utils/surf/surf-open.sh
parente66a65bdec52c387189adbb905102c3ae0ab0319 (diff)
Remove surf
Diffstat (limited to 'utils/surf/surf-open.sh')
-rwxr-xr-xutils/surf/surf-open.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/utils/surf/surf-open.sh b/utils/surf/surf-open.sh
deleted file mode 100755
index c22edc2..0000000
--- a/utils/surf/surf-open.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/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
-