summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-12-03 12:46:29 +0100
committerKarel Kočí <cynerd@email.cz>2017-12-03 12:46:29 +0100
commit4d6e32b87639fc2969202556b34fa793dcf865c6 (patch)
tree2ce9601fb590a71dbc7acdd07fda4e9681e45ffa
parent832fb2c5d9ff57fb96d6534a09601e25a82898b4 (diff)
downloadsurf-4d6e32b87639fc2969202556b34fa793dcf865c6.tar.gz
surf-4d6e32b87639fc2969202556b34fa793dcf865c6.tar.bz2
surf-4d6e32b87639fc2969202556b34fa793dcf865c6.zip
Drop surf-open script as I don't need itv2.0.0
-rwxr-xr-xsurf-open.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/surf-open.sh b/surf-open.sh
deleted file mode 100755
index c22edc2..0000000
--- a/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
-