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/x/xinitrc
Daniel Flanagan 1c6ba4e3b4 add unclutter
2016-07-28 06:29:27 -05:00

28 lines
402 B
Bash

#!/bin/sh
if [ -f ~/.fehbg ]; then
~/.fehbg &
fi
source "$DOTFILES_PATH/x/xloadresources"
source "$DOTFILES_PATH/variables.bash"
# keyrepeat settings
xset r rate 250 80 &
# no screen blanking
xset -dpms &
xset s noblank &
xset s off &
# start the bar if we want it
if [ "$BAR_ON_XINIT" -eq 1 ]; then
"$DOTFILES_PATH/wm/extras/bar/start.bash" &
fi
# fire up wm
unclutter &
sxhkd &
exec bspwm