]> git.sur5r.net Git - i3/i3status/commitdiff
add "exit 1" to example shell script.
authorStefan Breunig <stefan@mathphys.fsk.uni-heidelberg.de>
Fri, 16 Mar 2012 12:02:29 +0000 (13:02 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 17 Mar 2012 22:26:20 +0000 (23:26 +0100)
This will make the script exit if i3bar has been killed or has crashed
instead of continuing to run in the background.

man/i3status.man

index 78cec3e7d7177e2721b0b1596a83dd820553a758..45ccb935859b348469e5adf1fd5179ed400f78ba 100644 (file)
@@ -335,7 +335,7 @@ use your shell, for example like this:
 i3status | while :
 do
        read line
-       echo "mystuff | $line"
+       echo "mystuff | $line" || exit 1
 done
 --------------------------------------------------------------