summaryrefslogtreecommitdiff
path: root/surf-open.sh
blob: 29036f8062f1cfeca852d200a9d31ef0594e33ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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" 2>&1 >/dev/null
	if [ $? -gt 0 ];
	then
		runtabbed
	else
		surf -e "$xid" "$uri" 2>&1 >/dev/null &
	fi
fi