tcet-linux icon indicating copy to clipboard operation
tcet-linux copied to clipboard

[FIX] Grub

Open Akash6222 opened this issue 2 years ago • 3 comments

  • [ ] Fix grub of uefi boot

Akash6222 avatar Jul 28 '23 19:07 Akash6222

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.

0xAtharv avatar Oct 16 '23 17:10 0xAtharv

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 ??

Akash6222 avatar Dec 05 '23 06:12 Akash6222

Adding custom theme in grub is pretty much simple :

  1. 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
  1. Store your theme here : /usr/share/grub/themes/

  2. 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" 
  1. Apply the changes :
sudo grub-mkconfig -o /boot/grub/grub.cfg

Dark-Kernel avatar Dec 20 '23 05:12 Dark-Kernel