add missing hardware menu entry
This commit is contained in:
parent
596786ea91
commit
1d4494abcf
1 changed files with 11 additions and 7 deletions
18
yggdrasil.sh
18
yggdrasil.sh
|
@ -322,10 +322,11 @@ mainMenuOptions=$(whiptail \
|
||||||
"5" "Themes & Icons" \
|
"5" "Themes & Icons" \
|
||||||
"6" "Dev Apps" \
|
"6" "Dev Apps" \
|
||||||
"7" "System Config" \
|
"7" "System Config" \
|
||||||
"8" "System Tools" \
|
"8" "Hardware" \
|
||||||
"9" "Reboot this computer" \
|
"9" "System Tools" \
|
||||||
"10" "About Yggdrasil" \
|
"10" "Reboot this computer" \
|
||||||
"11" "Quit" 3>&1 1>&2 2>&3)
|
"11" "About Yggdrasil" \
|
||||||
|
"12" "Quit" 3>&1 1>&2 2>&3)
|
||||||
|
|
||||||
case $mainMenuOptions in
|
case $mainMenuOptions in
|
||||||
"1")
|
"1")
|
||||||
|
@ -351,15 +352,18 @@ case $mainMenuOptions in
|
||||||
showConfigMenu;
|
showConfigMenu;
|
||||||
;;
|
;;
|
||||||
"8")
|
"8")
|
||||||
showSysToolsMenu
|
showHardwareMenu
|
||||||
;;
|
;;
|
||||||
"9")
|
"9")
|
||||||
showRebootBoxMenu
|
showSysToolsMenu
|
||||||
;;
|
;;
|
||||||
"10")
|
"10")
|
||||||
showAboutBoxMenu
|
showRebootBoxMenu
|
||||||
;;
|
;;
|
||||||
"11")
|
"11")
|
||||||
|
showAboutBoxMenu
|
||||||
|
;;
|
||||||
|
"12")
|
||||||
exit
|
exit
|
||||||
;;
|
;;
|
||||||
esac # main menu
|
esac # main menu
|
||||||
|
|
Loading…
Reference in a new issue