From 120b0999b4d996f4e9a0d78975f7ef4923b95e7e Mon Sep 17 00:00:00 2001 From: stkhan Date: Sat, 19 Jun 2021 10:42:51 -0500 Subject: Remove tmp dir Former-commit-id: f9a9e87a5573b8c6549d802405fa53c78ec419b9 --- sd/surf-2.1/surf-open.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 sd/surf-2.1/surf-open.sh (limited to 'sd/surf-2.1/surf-open.sh') diff --git a/sd/surf-2.1/surf-open.sh b/sd/surf-2.1/surf-open.sh deleted file mode 100755 index c22edc2..0000000 --- a/sd/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 - -- cgit v1.2.3