Advertisement
Guest User

Untitled

a guest
Nov 29th, 2013
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # ~/.xinitrc
  4. #
  5. # Executed by startx (run your window manager from here)
  6. xset +fp /usr/share/fonts/local
  7. xset fp rehash
  8. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  9. for f in /etc/X11/xinit/xinitrc.d/*; do
  10. [ -x "$f" ] && . "$f"
  11. done
  12. unset f
  13. fi
  14. export GTK2_RC_FILES="/etc/gtk-2.0/gtkrc:$HOME/.gtkrc-2.0"
  15.  
  16. [[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
  17. xbindkeys
  18.  
  19. # MPD daemon start (if no other user instance exists)
  20. [ ! -s ~/.mpd/pid ] && mpd
  21.  
  22. case "$1" in
  23. i3) exec i3;;
  24. bspwm) exec bspwm;;
  25. *) exec $DEFAULTSESSION ;;
  26. esac
  27. #sxhkd &
  28. #exec bspwm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement