3 sysmodmap=/usr/local/etc/X11/xinit/.Xmodmap
4 sysresources=/usr/local/etc/X11/xinit/.Xresources
5 usermodmap="$HOME/.Xmodmap"
6 userresources="$HOME/.Xresources"
8 if [ -f $sysresources ]; then
9 xrdb -merge $sysresources
11 if [ -f $sysmodmap ]; then
14 if [ -f "$userresources" ]; then
15 xrdb -merge "$userresources"
17 if [ -f "$usermodmap" ]; then
26 xautolock -time 10 -locker "$HOME/bin/l" &
29 if [ -x /usr/local/bin/urxvtd ]; then
31 # try to start client twice, once before checking for daemon and
32 # another after trying to start it
35 # daemon not started, attempt to start once
40 TERMINAL=/usr/local/bin/urxvtc
48 # try to wait for session to start, but not critical
49 #XXX: may not be applicable to sessions other than i3
50 (sleep 0.2 && [ -x "$HOME/bin/acpi_ac" ] && "$HOME/bin/acpi_ac" "0x0`sysctl -n hw.acpi.acline`" ) &
51 (sleep 1 && "$HOME/.fehbg") &
52 (sleep 1.5 && [ -x /usr/local/bin/conky ] && conky -c "$HOME/.conkyrc.d/dock" ) &
54 if [ -d /usr/local/etc/X11/xinit/xinitrc.d ]; then
55 for f in /usr/local/etc/X11/xinit/xinitrc.d/?*.sh; do
61 if [ ! -n "$1" ]; then