-
Notifications
You must be signed in to change notification settings - Fork 3
Home
bggardner edited this page Sep 7, 2020
·
6 revisions
module | Source | Dependencies |
---|---|---|
kano | kano-toolset | kano.notifications |
kano_i18n | kano-i18n | |
kano_profile | kano-profile | kano_profile_gui |
kano_profile_gui | kano-profile | |
kano.notifications | kano-widgets | |
linux_story | terminal-quest | kano, kano_i18n, kano_profile |
Story Mode has many mini-games that use the Kano Dashboard system to switch between them. Therefore, this file needs to exist:
/usr/bin/kano-dashboard-queue-command
#!/bin/bash
love_mode="/tmp/dashtest-kanoOverworld"
echo $* >"$love_mode"
and this application needs to be running:
/usr/bin/kano-dashboard-supervisor
#!/bin/bash
love_mode="/tmp/dashtest-kanoOverworld"
rm $love_mode
while true; do
if [ -f "$love_mode" ]; then
while [ -f "$love_mode" ]; do
/bin/sh "$love_mode"
if [ -f "$love_mode" ]; then
rm -f $love_mode
/usr/bin/kano-overworld
fi
done
fi
done
exit 0