nightly/beta removed
This commit is contained in:
parent
0acf7f9149
commit
3db26b6deb
3 changed files with 17 additions and 43 deletions
|
@ -429,20 +429,6 @@ function showAppInstallMenu () {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
|
||||||
# show menu to install beta apps from different categories
|
|
||||||
#
|
|
||||||
function showAppBetaInstallMenu () {
|
|
||||||
installBetaMenu
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
|
||||||
# show menu to install nightly apps from different categories
|
|
||||||
#
|
|
||||||
function showAppNightlyInstallMenu () {
|
|
||||||
installNightlyMenu
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# show menu about install/config hardware
|
# show menu about install/config hardware
|
||||||
#
|
#
|
||||||
|
|
|
@ -384,11 +384,7 @@ sqlparse;pip;atom;sqlparse
|
||||||
flake8;pip;atom;flake8
|
flake8;pip;atom;flake8
|
||||||
autopep8;pip;atom;autopep8
|
autopep8;pip;atom;autopep8
|
||||||
htmlbeautifier;gem;atom;htmlbeautifier
|
htmlbeautifier;gem;atom;htmlbeautifier
|
||||||
kodi;apt;beta;kodi-beta
|
|
||||||
kodi;apt;nightly;kodi-nightly
|
|
||||||
nitrogen;apt;nitrogen;nitrogen
|
nitrogen;apt;nitrogen;nitrogen
|
||||||
firefox-trunk;apt;nightly;firefox-trunk
|
|
||||||
firefox-trunk-locale-fr;apt;nightly;firefox-trunk-locale-fr
|
|
||||||
libreoffice;apt;office;libreoffice6
|
libreoffice;apt;office;libreoffice6
|
||||||
winehq-stable;apt;wine;winehq-stable
|
winehq-stable;apt;wine;winehq-stable
|
||||||
winetricks;apt;wine;winetricks
|
winetricks;apt;wine;winetricks
|
||||||
|
|
42
yggdrasil.sh
42
yggdrasil.sh
|
@ -308,17 +308,15 @@ mainMenuOptions=$(whiptail \
|
||||||
25 80 16 \
|
25 80 16 \
|
||||||
"1" "System update" \
|
"1" "System update" \
|
||||||
"2" "Applications" \
|
"2" "Applications" \
|
||||||
"3" "Applications (BETA)" \
|
"3" "Themes & Icons" \
|
||||||
"4" "Applications (Nightly)" \
|
"4" "Dev Apps" \
|
||||||
"5" "Themes & Icons" \
|
"5" "System Config" \
|
||||||
"6" "Dev Apps" \
|
"6" "Hardware" \
|
||||||
"7" "System Config" \
|
"7" "System Tools" \
|
||||||
"8" "Hardware" \
|
"8" "Add Makoto no Blog repository" \
|
||||||
"9" "System Tools" \
|
"9" "Reboot this computer" \
|
||||||
"10" "Add Makoto no Blog repository" \
|
"10" "About Yggdrasil" \
|
||||||
"11" "Reboot this computer" \
|
"11" "Quit" 3>&1 1>&2 2>&3)
|
||||||
"12" "About Yggdrasil" \
|
|
||||||
"13" "Quit" 3>&1 1>&2 2>&3)
|
|
||||||
|
|
||||||
case $mainMenuOptions in
|
case $mainMenuOptions in
|
||||||
"1")
|
"1")
|
||||||
|
@ -329,36 +327,30 @@ case $mainMenuOptions in
|
||||||
showAppInstallMenu
|
showAppInstallMenu
|
||||||
;;
|
;;
|
||||||
"3")
|
"3")
|
||||||
installAppsFromListMenu beta
|
|
||||||
;;
|
|
||||||
"4")
|
|
||||||
installAppsFromListMenu nightly
|
|
||||||
;;
|
|
||||||
"5")
|
|
||||||
showThemesInstallMenu
|
showThemesInstallMenu
|
||||||
;;
|
;;
|
||||||
"6")
|
"4")
|
||||||
showDevInstallMenu
|
showDevInstallMenu
|
||||||
;;
|
;;
|
||||||
"7")
|
"5")
|
||||||
showConfigMenu;
|
showConfigMenu;
|
||||||
;;
|
;;
|
||||||
"8")
|
"6")
|
||||||
showHardwareMenu
|
showHardwareMenu
|
||||||
;;
|
;;
|
||||||
"9")
|
"7")
|
||||||
showSysToolsMenu
|
showSysToolsMenu
|
||||||
;;
|
;;
|
||||||
"10")
|
"8")
|
||||||
addRepo_Makoto
|
addRepo_Makoto
|
||||||
;;
|
;;
|
||||||
"11")
|
"9")
|
||||||
showRebootBoxMenu
|
showRebootBoxMenu
|
||||||
;;
|
;;
|
||||||
"12")
|
"10")
|
||||||
showAboutBoxMenu
|
showAboutBoxMenu
|
||||||
;;
|
;;
|
||||||
"13")
|
"11")
|
||||||
exit
|
exit
|
||||||
;;
|
;;
|
||||||
esac # main menu
|
esac # main menu
|
||||||
|
|
Loading…
Reference in a new issue