diff options
author | Marvin Borner | 2020-04-14 16:06:38 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-14 16:06:38 +0200 |
commit | 5fdba75bfabd45cb1bf38af86d3cec641d488093 (patch) | |
tree | 37732d88ad7a6a04987a8842fc9d58106db0a7a0 /.repos/surf/surf-open.sh | |
parent | 5a1e1cb5fc7481d02fec611bfadd2d2928448c59 (diff) |
Added surf configurations
Diffstat (limited to '.repos/surf/surf-open.sh')
-rwxr-xr-x | .repos/surf/surf-open.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.repos/surf/surf-open.sh b/.repos/surf/surf-open.sh new file mode 100755 index 0000000..c22edc2 --- /dev/null +++ b/.repos/surf/surf-open.sh @@ -0,0 +1,32 @@ +#!/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 + |