]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - xinitrc
xinitrc: Set the X root background if possible.
[config/dotfiles.git] / xinitrc
1 # startx configuration file.
2
3
4 # Use a black background for the root window.
5 xsetroot -solid black
6
7 # Use my X11 key bindings.
8 xmodmap ~/.xmodmaprc
9
10 if [ -f ~/.background ]; then
11     hsetroot -full ~/.background
12 fi
13
14 # Start stumpwm.
15 xmonad
16
17 # vim: ft=sh