-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EFI boot support for Fedora #5
Conversation
install.sh
Outdated
# BLS etries have 'kernel' class, copy corresponding icon | ||
if [[ -d /boot/loader/entries && -e ${THEME}-master/icons/${ID}.png ]] | ||
then | ||
cp ${THEME}-master/icons/${ID}.png ${THEME}-master/icons/kernel.png | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this Fedora/RH specific?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not aware of other distros, since I'm using Fedora, and they introduced Bootloader Specification in version 30 (https://fedoraproject.org/wiki/Changes/BootLoaderSpecByDefault). Anyways, nothing is preventing other distros from implementing it in future releases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I was not aware of that, thanks. Still, grub_class kernel
part seems to be Fedora/RH specific change to BLS (https://fedoraproject.org/wiki/Changes/BootLoaderSpecByDefault#Differences_from_BootLoaderSpec). Would you mind to move that code inside existing Fedora/RH elif
block (lines 64..76)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, no problem
Looks good, thank you! One small question though, see comment on lines 78 to 82 |
Merged, thank you! 😉 |
The theme doesn't get installed on Fedora with EFI enabled