summaryrefslogtreecommitdiff
path: root/surf-2.1/surf-open.sh
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2021-10-17 18:43:19 -0500
committerstkhan <personal@slickd.xyz>2021-10-17 18:43:19 -0500
commit3b852e0f10892789210fd8e3fdd8415faf3cf2d8 (patch)
tree9ff20de62f5e354926a5aed15b3f99c0dbd5cd63 /surf-2.1/surf-open.sh
parentcc844e1931ba6f4c417ea8682f5cfa72ef5e4fec (diff)
3.0
Diffstat (limited to 'surf-2.1/surf-open.sh')
-rwxr-xr-xsurf-2.1/surf-open.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/surf-2.1/surf-open.sh b/surf-2.1/surf-open.sh
deleted file mode 100755
index c22edc2..0000000
--- a/surf-2.1/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
-