improve
This commit is contained in:
parent
764ed5e80a
commit
bd31a5e64e
|
|
@ -298,15 +298,19 @@ grubInstall () {
|
||||||
|
|
||||||
# === select grub theme ===
|
# === select grub theme ===
|
||||||
grubTheme () {
|
grubTheme () {
|
||||||
clear
|
|
||||||
logo
|
|
||||||
grub_install
|
|
||||||
if ["$GRUB_INSTALL" == "yes"]; then
|
|
||||||
echo -ne "Select your grub theme:\n"
|
echo -ne "Select your grub theme:\n"
|
||||||
options=(cyberRE none)
|
options=(cyberRE none)
|
||||||
select_option $? 4 "${options[@]}"
|
select_option $? 4 "${options[@]}"
|
||||||
grub_theme=${options[$?]}
|
grub_theme=${options[$?]}
|
||||||
set_option GRUB_THEME $grub_theme
|
set_option GRUB_THEME $grub_theme
|
||||||
|
}
|
||||||
|
|
||||||
|
grubOptions () {
|
||||||
|
clear
|
||||||
|
logo
|
||||||
|
grubInstall
|
||||||
|
if ["$grub_install" == "yes"]; then
|
||||||
|
grubTheme
|
||||||
else
|
else
|
||||||
set_option GRUB_THEME none
|
set_option GRUB_THEME none
|
||||||
fi
|
fi
|
||||||
|
|
@ -352,7 +356,7 @@ installtype () {
|
||||||
|
|
||||||
# === setup basic options for server installation ===
|
# === setup basic options for server installation ===
|
||||||
userinfo
|
userinfo
|
||||||
grubTheme
|
grubOptions
|
||||||
aurhelper
|
aurhelper
|
||||||
desktopenv
|
desktopenv
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue