.xinitrc 533 B

123456789101112131415161718192021
  1. session=${1:-gameshell}
  2. case $session in
  3. hdmi )
  4. feh --bg-center ~/launchergo/sysgo/gameshell/wallpaper/desktopbg.jpg
  5. exec ~/launchergo/load.sh &
  6. exec ~/launcher/sys.py/gsnotify/gsnotify-arm daemon &
  7. # exec /usr/bin/twm -f ~/launchergo/.twmrc
  8. exec ~/launchergo/dwm-mod
  9. ;;
  10. gameshell )
  11. feh --bg-center ~/launchergo/sysgo/gameshell/wallpaper/loading.png
  12. exec ~/launchergo/load.sh &
  13. exec ~/launcher/sys.py/gsnotify/gsnotify-arm &
  14. # exec awesome -c ~/launchergo/awesome/rc.lua
  15. exec ~/launchergo/dwm-mod
  16. ;;
  17. *)
  18. exec $1;;
  19. esac