Fix output redirection in surf-open.sh
Incorrect order of output rediection specifiers was causing useless text appearing in terminal when starting surf-open (for example, BadWindow error from xprop when tabbed window is already closed). It isn't now. Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
parent
c6fbbd9dc6
commit
a5dddd8fd3
1 changed files with 2 additions and 2 deletions
|
@ -21,12 +21,12 @@ then
|
||||||
runtabbed
|
runtabbed
|
||||||
else
|
else
|
||||||
xid=$(cat "$xidfile")
|
xid=$(cat "$xidfile")
|
||||||
xprop -id "$xid" 2>&1 >/dev/null
|
xprop -id "$xid" >/dev/null 2>&1
|
||||||
if [ $? -gt 0 ];
|
if [ $? -gt 0 ];
|
||||||
then
|
then
|
||||||
runtabbed
|
runtabbed
|
||||||
else
|
else
|
||||||
surf -e "$xid" "$uri" 2>&1 >/dev/null &
|
surf -e "$xid" "$uri" >/dev/null 2>&1 &
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue