Guest User

.xinitrc

a guest
Nov 19th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 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#!/bin/sh
  8. #
  9. # ~/.xinitrc
  10. #
  11. # Executed by startx (run your window manager from here)
  12.  
  13. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  14. for f in /etc/X11/xinit/xinitrc.d/*; do
  15. [ -x "$f" ] && . "$f"
  16. done
  17. unset f
  18. fi
  19.  
  20. # exec gnome-session
  21. # exec startkde
  22. # exec startxfce4
  23. # ...or the Window Manager of your choice
  24.  
  25. urxvt &
  26. chromium &
  27.  
  28. exec i3
Advertisement
Add Comment
Please, Sign In to add comment