.xinitrc 722 B

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