.
This commit is contained in:
parent
1ffe6082bc
commit
07fc635c03
1 changed files with 21 additions and 6 deletions
27
yggdrasil.sh
27
yggdrasil.sh
|
@ -2352,22 +2352,34 @@ function showConfigMenu () {
|
||||||
|
|
||||||
case $configMenuOptions in
|
case $configMenuOptions in
|
||||||
"Ufw")
|
"Ufw")
|
||||||
clear; enableUFW; pressKey
|
clear
|
||||||
|
enableUFW
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"NumLockX")
|
"NumLockX")
|
||||||
clear; enableNumLockX; pressKey
|
clear
|
||||||
|
enableNumLockX
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"TmpRAM")
|
"TmpRAM")
|
||||||
clear; enableTmpRAM; pressKey
|
clear
|
||||||
|
enableTmpRAM
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"screenfetch")
|
"screenfetch")
|
||||||
clear; addScreenfetchBashrc; pressKey
|
clear
|
||||||
|
addScreenfetchBashrc
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"historyTS")
|
"historyTS")
|
||||||
clear; enableHistoryTS; pressKey
|
clear
|
||||||
|
enableHistoryTS
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"unattendedUpgrades")
|
"unattendedUpgrades")
|
||||||
clear; installUnattendedUpgrades; pressKey
|
clear
|
||||||
|
installUnattendedUpgrades
|
||||||
|
pressKey
|
||||||
;;
|
;;
|
||||||
"Back")
|
"Back")
|
||||||
break
|
break
|
||||||
|
@ -2447,6 +2459,9 @@ function showThemesInstallMenu () {
|
||||||
"icons")
|
"icons")
|
||||||
installIconsMenu
|
installIconsMenu
|
||||||
;;
|
;;
|
||||||
|
"plank")
|
||||||
|
#TODO:
|
||||||
|
;;
|
||||||
"Back")
|
"Back")
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue