clean, autolock, updated pkg, laptop
[dotfiles.git] / x / .xinitrc
index 23df7c9..685a75a 100755 (executable)
@@ -1,12 +1,23 @@
 #!/bin/bash
 #To fix java applications in tiling (e.g. arduino)
 export _JAVA_AWT_WM_NONREPARENTING=1
+
+# notifications
 dunst &
+
+# tray icons
 # trayer --align right --widthtype request --SetPartialStrut false --height 22 &
 
+# gpg agent
 eval "$(gpg-agent --daemon)"
+
+# XResources
 xrdb -merge ~/.Xresources
 
+# auto locking
+xautolock -locker slock -time 10 &
+
+# Other system wide xinit files
 if [ -d /etc/X11/xinit/xinitrc.d ] ; then
        for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
                [ -x "$f" ] && . "$f"
@@ -14,5 +25,8 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
        unset f
 fi
 
+# status bar
 while true; do xsetroot -name "$(bar)"; sleep 1m; done &
+
+# wm
 while true; do dwm 1>/tmp/dwm.log 2>&1; done