]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - herbstluftwm/autostart
herbstluftwm/autostart: Log output in xinitrc.
[config/dotfiles.git] / herbstluftwm / autostart
index 7773911c4220d3ba2710ee2a30c138163fb930b6..d5f30a8b8d6f6ffa547dea1be2f77e2ddb1fd0c9 100755 (executable)
 
 set -e
 
-# Log all output to catch errors in the configuration file.
-logfile="$HOME/.config/herbstluftwm/log"
-exec >"$logfile" 2>&1
-
 
 hc() {
     herbstclient "$@"
@@ -45,7 +41,7 @@ hc keyunbind --all
 # Basic key bindings.
 hc keybind $mod-Shift-Return spawn urxvt
 hc keybind $mod-Shift-c close
-hc keybind $mod-Shift-r reload
+hc keybind $mod-q reload
 hc keybind $mod-Shift-q quit
 # Lock the screen. The sleep is necessary to allow xtrlock to grab the
 # keyboard input.
@@ -143,10 +139,6 @@ notify() {
     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