This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/x/xinitrc

28 lines
383 B
Plaintext
Raw Normal View History

2016-01-06 11:55:04 -06:00
#!/bin/sh
2016-01-06 12:46:55 -06:00
if [ -f ~/.fehbg ]; then
~/.fehbg &
2016-01-06 11:55:04 -06:00
fi
2016-01-06 12:46:55 -06:00
source "$DOTFILES_PATH/x/xloadresources"
source "$DOTFILES_PATH/variables.bash"
2016-01-06 11:55:04 -06:00
2016-01-06 12:46:55 -06:00
# keyrepeat settings
xset r rate 250 80 &
2016-01-06 11:55:04 -06:00
2016-01-06 12:46:55 -06:00
# no screen blanking
xset -dpms &
xset s noblank &
xset s off &
2016-01-06 11:55:04 -06:00
# start the bar if we want it
if [ "$BAR_ON_XINIT" -eq 1 ]; then
2016-07-29 11:20:11 -05:00
"$BAR_PATH/start.bash" &
fi
2016-01-06 12:46:55 -06:00
# fire up wm
2016-07-28 06:29:27 -05:00
unclutter &
sxhkd &
2016-01-06 11:55:04 -06:00
exec bspwm