mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-12 09:48:50 +01:00
20 lines
467 B
Plaintext
20 lines
467 B
Plaintext
session=${1:-gameshell}
|
|
|
|
case $session in
|
|
hdmi )
|
|
feh --bg-center ~/launcher/sys.py/gameshell/wallpaper/desktopbg.jpg
|
|
exec ~/launcher/load.sh &
|
|
exec ~/launcher/sys.py/gsnotify/gsnotify-arm daemon &
|
|
exec /usr/bin/twm -f ~/launcher/.twmrc
|
|
;;
|
|
gameshell )
|
|
feh --bg-center ~/launcher/sys.py/gameshell/wallpaper/loading.png
|
|
exec ~/launcher/load.sh &
|
|
exec ~/launcher/sys.py/gsnotify/gsnotify-arm &
|
|
exec awesome -c ~/launcher/awesome/rc.lua
|
|
;;
|
|
*)
|
|
exec $1;;
|
|
esac
|
|
|