diff options
author | Marvin Borner | 2020-06-12 19:46:15 +0200 |
---|---|---|
committer | Marvin Borner | 2020-06-12 19:46:15 +0200 |
commit | 88565e120f0564f2354925617a83f1496353bb8d (patch) | |
tree | e95f8ae9f0f15665262dd7ec71d2bf154af34d3e /.repos/surf/surf-open.sh | |
parent | 425098cd34c74beb38ccb3a13a78ec74f342bc22 (diff) |
Clean-up
Diffstat (limited to '.repos/surf/surf-open.sh')
-rwxr-xr-x | .repos/surf/surf-open.sh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/.repos/surf/surf-open.sh b/.repos/surf/surf-open.sh deleted file mode 100755 index c22edc2..0000000 --- a/.repos/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 - |