mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-12-25 20:05:34 +01:00
Fixed Kali linux install issue #111
This commit is contained in:
parent
1007834d93
commit
5871779b04
17
install.sh
17
install.sh
@ -209,6 +209,13 @@ install() {
|
|||||||
sed -i "s|.*GRUB_TERMINAL_OUTPUT=.*|#GRUB_TERMINAL_OUTPUT=console|" /etc/default/grub
|
sed -i "s|.*GRUB_TERMINAL_OUTPUT=.*|#GRUB_TERMINAL_OUTPUT=console|" /etc/default/grub
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# For Kali linux
|
||||||
|
if [[ -f "/etc/default/grub.d/kali-themes.cfg" ]]; then
|
||||||
|
cp -an /etc/default/grub.d/kali-themes.cfg /etc/default/grub.d/kali-themes.cfg.bak
|
||||||
|
sed -i "s|.*GRUB_GFXMODE=.*|${gfxmode}|" /etc/default/grub.d/kali-themes.cfg
|
||||||
|
sed -i "s|.*GRUB_THEME=.*|GRUB_THEME=\"${THEME_DIR}/${name}/theme.txt\"|" /etc/default/grub.d/kali-themes.cfg
|
||||||
|
fi
|
||||||
|
|
||||||
# Update grub config
|
# Update grub config
|
||||||
prompt -i "\n Updating grub config...\n"
|
prompt -i "\n Updating grub config...\n"
|
||||||
|
|
||||||
@ -386,13 +393,21 @@ remove() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Backup grub config
|
# Backup grub config
|
||||||
if [[ -f /etc/default/grub.bak ]]; then
|
if [[ -f "/etc/default/grub.bak" ]]; then
|
||||||
rm -rf /etc/default/grub && mv /etc/default/grub.bak /etc/default/grub
|
rm -rf /etc/default/grub && mv /etc/default/grub.bak /etc/default/grub
|
||||||
else
|
else
|
||||||
prompt -i "\n grub.bak not exist!"
|
prompt -i "\n grub.bak not exist!"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# For Kali linux
|
||||||
|
if [[ -f "/etc/default/grub.d/kali-themes.cfg.bak" ]]; then
|
||||||
|
rm -rf /etc/default/grub.d/kali-themes.cfg && mv /etc/default/grub.d/kali-themes.cfg.bak /etc/default/grub.d/kali-themes.cfg
|
||||||
|
else
|
||||||
|
prompt -i "\n kali-themes.cfg.bak not exist!"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
# Update grub config
|
# Update grub config
|
||||||
prompt -i "\n Resetting grub theme...\n"
|
prompt -i "\n Resetting grub theme...\n"
|
||||||
updating_grub
|
updating_grub
|
||||||
|
Loading…
Reference in New Issue
Block a user