]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - xinitrc
xmonad.hs: Prevent new windows from stealing focus.
[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 # Change the background if available.
11 if [ -f ~/.background ]; then
12     hsetroot -full ~/.background
13 fi
14
15 # Start XMonad.
16 xmonad
17
18 # vim: ft=sh