Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # ~/.xinitrc
  4. #
  5. # Executed by startx (run your window manager from here)
  6.  
  7. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  8. for f in /etc/X11/xinit/xinitrc.d/*; do
  9. [ -x "$f" ] && . "$f"
  10. done
  11. unset f
  12. fi
  13.  
  14. # exec gnome-session
  15. # exec startkde
  16. # exec startxfce4
  17. # ...or the Window Manager of your choice
  18. exec awesome
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement