Captures all output from herbstluftwm, not only while autostart is
running.
set -e
-# Log all output to catch errors in the configuration file.
-logfile="$HOME/.config/herbstluftwm/log"
-exec >"$logfile" 2>&1
-
hc() {
herbstclient "$@"
sed 's/\^/^^/g' | dzen2 -fg blue -bg yellow -y 15 -h 30 -p "$@"
}
-if test -s "$logfile"; then
- echo "hlwm: errors in autostart, check log '$logfile'" | notify 3
-else
- # To notify me if set -e has terminated the script.
- echo 'hlwm restarted' | notify 1
- rm "$logfile"
-fi
+# To notify me if set -e has terminated the script (then this part won't get
+# executed).
+echo 'hlwm restarted' | notify 1
# Start window manager.
if installed herbstluftwm; then
- herbstluftwm --locked
+ herbstluftwm --locked >~/.config/herbstluftwm/log 2>&1
elif installed xmonad; then
xmonad
elif installed stumpwm; then