xinitrc.sample 309 B

1234567891011121314151617181920212223
  1. # the following variable defines the session which is started if the user
  2. # doesn't explicitely select a session
  3. DEFAULT_SESSION=twm
  4. case $1 in
  5. xfce4)
  6. exec startxfce4
  7. ;;
  8. icewm)
  9. icewmbg &
  10. icewmtray &
  11. exec icewm
  12. ;;
  13. wmaker)
  14. exec wmaker
  15. ;;
  16. blackbox)
  17. exec blackbox
  18. ;;
  19. *)
  20. exec $DEFAULT_SESSION
  21. ;;
  22. esac