diff options
-rwxr-xr-x | launch/launch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/launch/launch b/launch/launch index 0e2745e..9a63cbf 100755 --- a/launch/launch +++ b/launch/launch @@ -50,5 +50,16 @@ case "`hostname`" in *) launchother $@ ;; esac ;; + librex60) + case "$1" in + brave) iceweasel ;; + chromium|chrome) iceweasel ;; + halt|off|poweroff|shutdown) doas poweroff ;; + #sleep|suspend|zzz) doas zzz ;; + reboot|res|restart) doas reboot ;; + #snes|snes9x) snes9x-gtk $args ;; + *) launchother $@ ;; + esac + ;; *) echo "Launch: The hostname \"`hostname`\" is not recognized. Please add an entry for it!" ;; esac |