tcet-linux
tcet-linux copied to clipboard
[FIX] Grub
- [ ] Fix grub of uefi boot
a custom tcet linux theme is not applied on grub when booted in uefi mode i suspect the problem is that we are using efiboot for for booting with bios and for uefi we are using grub so we may need to add a custom theme for grub.
a custom tcet linux theme is not applied on grub when booted in uefi mode i suspect the problem is that we are using efiboot for for booting with bios and for uefi we are using grub so we may need to add a custom theme for grub.
Can you do that ??
Adding custom theme in grub is pretty much simple :
- First backup your configs
sudo cp /etc/default/grub /etc/default/grub.t2.bkp
sudo cp /boot/grub/grub.cfg /boot/grub/grub.t2.bkp
-
Store your theme here :
/usr/share/grub/themes/ -
Make following changes in
/etc/default/grub
GRUB_DEFAULT=saved
GRUB_GFXMODE=1280x1024x32,auto
GRUB_THEME="/usr/share/grub/themes/<themename>/theme.txt"
GRUB_SAVEDEFAULT=true"
- Apply the changes :
sudo grub-mkconfig -o /boot/grub/grub.cfg