mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-14 12:43:13 +02:00
17 lines
No EOL
295 B
Bash
Executable file
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
|
|
} |