diff options
author | Alexander Sedov <alex0player@gmail.com> | 2013-03-14 07:13:35 +0400 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2013-03-14 06:33:02 +0100 |
commit | a5dddd8fd3cce2d77b9bbb3e22f2d1f1552b6ee4 (patch) | |
tree | e90aedc9760556005f71b64b303f711dba563d78 | |
parent | c6fbbd9dc6c16b04fd6c59f891909f59474ee429 (diff) | |
download | surf-a5dddd8fd3cce2d77b9bbb3e22f2d1f1552b6ee4.tar.gz surf-a5dddd8fd3cce2d77b9bbb3e22f2d1f1552b6ee4.tar.bz2 surf-a5dddd8fd3cce2d77b9bbb3e22f2d1f1552b6ee4.zip |
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>
-rwxr-xr-x | surf-open.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/surf-open.sh b/surf-open.sh index 29036f8..c22edc2 100755 --- a/surf-open.sh +++ b/surf-open.sh @@ -21,12 +21,12 @@ then runtabbed else xid=$(cat "$xidfile") - xprop -id "$xid" 2>&1 >/dev/null + xprop -id "$xid" >/dev/null 2>&1 if [ $? -gt 0 ]; then runtabbed else - surf -e "$xid" "$uri" 2>&1 >/dev/null & + surf -e "$xid" "$uri" >/dev/null 2>&1 & fi fi |