joininbox/scripts/menu.functions.sh
2020-06-17 22:20:56 +01:00

17 lines
No EOL
295 B
Bash
Executable file

openMenuIfCancelled() {
pressed=$1
case $pressed in
1)
echo "Cancelled"
echo "Returning to the menu..."
sleep 1
/home/joinmarket/menu.sh
exit 1;;
255)
echo "ESC pressed."
echo "Returning to the menu..."
sleep 1
/home/joinmarket/menu.sh
exit 1;;
esac
}