From 41002157cc083b9fd537a748995161950a33249e Mon Sep 17 00:00:00 2001 From: grohan47 <74037058+grohan47@users.noreply.github.com> Date: Tue, 19 Apr 2022 22:30:05 +0530 Subject: [PATCH] Added some notes to Manual Installation section Added a note to let the user know that the name of the GRUB folder varies distro to distro & Replaced ubuntu with generic name. --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4ee984d..47e78fe 100644 --- a/README.md +++ b/README.md @@ -247,6 +247,8 @@ git clone https://github.com/AdisonCavani/distro-grub-themes.git ``` sudo mkdir /boot/grub/themes +or +sudo mkdir /boot/grub2/themes ``` #### Edit or use pre-made theme @@ -260,7 +262,9 @@ cd distro-grub-themes/customize Theme must be unpacked (in folder) ``` -sudo cp -r ubuntu/ /boot/grub/themes +sudo cp -r / /boot/grub/themes +or +sudo cp -r / /boot/grub2/theme ``` #### Edit Grub config @@ -280,10 +284,16 @@ GRUB_GFXMODE=1920x1080 At the end of file add theme path: ``` -GRUB_THEME="/boot/grub/themes/ubuntu/theme.txt" +GRUB_THEME="/boot/grub/themes//theme.txt" ``` -Replace "ubuntu" with selected theme
+### Note: +- **Replace "" with selected theme's name.** + +- **To check what name your distro has given the GRUB folder, run:** + ``` + ls /boot | grep -i -w 'grub\|grub2' + ``` Ctrl+O to save, Ctrl+X to exit #### Update Grub config