mirror of
https://github.com/vinceliuice/grub2-themes.git
synced 2024-11-16 19:15:38 +01:00
Fix missing unicode.pf2 in fedora
This commit is contained in:
parent
420deda7c4
commit
cd5eaf3b84
12
install.sh
12
install.sh
@ -118,6 +118,18 @@ install() {
|
|||||||
# Backup grub config
|
# Backup grub config
|
||||||
cp -an /etc/default/grub /etc/default/grub.bak
|
cp -an /etc/default/grub /etc/default/grub.bak
|
||||||
|
|
||||||
|
# Fedora workaround to fix the missing unicode.pf2 file (tested on fedora 34): https://bugzilla.redhat.com/show_bug.cgi?id=1739762
|
||||||
|
# This occurs when we add a theme on grub2 with Fedora.
|
||||||
|
if has_command dnf; then
|
||||||
|
if grep "GRUB_FONT=" /etc/default/grub 2>&1 >/dev/null; then
|
||||||
|
#Replace GRUB_FONT
|
||||||
|
sed -i "s|.*GRUB_FONT=.*|GRUB_FONT=/boot/efi/EFI/fedora/fonts/unicode.pf2|" /etc/default/grub
|
||||||
|
else
|
||||||
|
#Append GRUB_FONT
|
||||||
|
echo "GRUB_FONT=/boot/efi/EFI/fedora/fonts/unicode.pf2" >> /etc/default/grub
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
if grep "GRUB_THEME=" /etc/default/grub 2>&1 >/dev/null; then
|
if grep "GRUB_THEME=" /etc/default/grub 2>&1 >/dev/null; then
|
||||||
#Replace GRUB_THEME
|
#Replace GRUB_THEME
|
||||||
sed -i "s|.*GRUB_THEME=.*|GRUB_THEME=\"${THEME_DIR}/${theme}/theme.txt\"|" /etc/default/grub
|
sed -i "s|.*GRUB_THEME=.*|GRUB_THEME=\"${THEME_DIR}/${theme}/theme.txt\"|" /etc/default/grub
|
||||||
|
Loading…
Reference in New Issue
Block a user