.xinitrc 646 B

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