My various dotfiles

.xinitrc 368B

1234567891011121314151617
  1. #!/bin/bash
  2. source $HOME/.bash_profile
  3. xset -b
  4. setxkbmap -option ctrl:nocaps
  5. xrdb ~/.Xresources
  6. if [ -f ~/bin/setup_display.sh ]; then
  7. ~/bin/setup_display.sh
  8. fi
  9. # Enable vmware tools if we have them installed
  10. command -v vmtoolsd >/dev/null 2>&1 && vmtoolsd -n vmusr&
  11. xscreensaver -no-splash &
  12. dunst &
  13. if [ -f ~/.fehbg ]; then
  14. sh ~/.fehbg
  15. fi
  16. exec ~/bin/stumpwm