# startx configuration file. # Use a black background for the root window. xsetroot -solid black # Use my X11 key bindings. xmodmap ~/.xmodmaprc # Change the background if available. if [ -f ~/.background ]; then if [ -x /usr/bin/hsetroot ]; then hsetroot -full ~/.background elif [ -x /usr/bin/feh ]; then feh --bg-scale ~/.background fi fi # Start XMonad. xmonad # vim: ft=sh