]> git.lizzy.rs Git - bspwm.git/commitdiff
Fix indentation in example display manager session
authorBastien Dejean <nihilhill@gmail.com>
Sun, 1 Dec 2013 10:30:08 +0000 (11:30 +0100)
committerBastien Dejean <nihilhill@gmail.com>
Sun, 1 Dec 2013 10:30:08 +0000 (11:30 +0100)
contrib/lightdm/bspwm-session

index 2df350132aa50c9b788d521a51e17d85448483b5..0e0b5ffb68e7a053bcd09453fbbe31c7369320fa 100755 (executable)
@@ -38,20 +38,20 @@ export BSPWM_SOCKET=${state_path}/bspwm-socket
 # Trap: make sure everything started in ~/.config/bspwm/autostart is
 # signalled when this script exits or dies. Also clean up $state_path.
 function on_exit {
-for child in $(jobs -p); do
-    jobs -p | grep -q $child && kill $child
-done
-# Extra paranoia
-[[ -d "${state_path}" && -w "${state_path}" ]] && rm -rf -- "${state_path}"
+    for child in $(jobs -p); do
+        jobs -p | grep -q $child && kill $child
+    done
+    # Extra paranoia
+    [[ -d "${state_path}" && -w "${state_path}" ]] && rm -rf -- "${state_path}"
 }
 
 trap on_exit EXIT SIGHUP SIGINT SIGTERM
 
 # Environment and autostart:
 source_these=(
-"/etc/profile",
-"${HOME}/.profile",
-"${XDG_CONFIG_HOME:-"$HOME/.config"}/bspwm/autostart"
+    "/etc/profile",
+    "${HOME}/.profile",
+    "${XDG_CONFIG_HOME:-"$HOME/.config"}/bspwm/autostart"
 )
 
 for file in "${source_these[@]}"; do