mirror of
https://github.com/AdisonCavani/distro-grub-themes.git
synced 2025-06-06 15:12:35 +02:00
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.
This commit is contained in:
parent
d1d0c2dd26
commit
41002157cc
1 changed files with 13 additions and 3 deletions
16
README.md
16
README.md
|
@ -247,6 +247,8 @@ git clone https://github.com/AdisonCavani/distro-grub-themes.git
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo mkdir /boot/grub/themes
|
sudo mkdir /boot/grub/themes
|
||||||
|
or
|
||||||
|
sudo mkdir /boot/grub2/themes
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Edit or use pre-made theme
|
#### Edit or use pre-made theme
|
||||||
|
@ -260,7 +262,9 @@ cd distro-grub-themes/customize
|
||||||
Theme must be unpacked (in folder)
|
Theme must be unpacked (in folder)
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo cp -r ubuntu/ /boot/grub/themes
|
sudo cp -r <theme_name>/ /boot/grub/themes
|
||||||
|
or
|
||||||
|
sudo cp -r <theme_name>/ /boot/grub2/theme
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Edit Grub config
|
#### Edit Grub config
|
||||||
|
@ -280,10 +284,16 @@ GRUB_GFXMODE=1920x1080
|
||||||
At the end of file add theme path:
|
At the end of file add theme path:
|
||||||
|
|
||||||
```
|
```
|
||||||
GRUB_THEME="/boot/grub/themes/ubuntu/theme.txt"
|
GRUB_THEME="/boot/grub/themes/<theme_name>/theme.txt"
|
||||||
```
|
```
|
||||||
|
|
||||||
Replace "ubuntu" with selected theme<br>
|
### Note:
|
||||||
|
- **Replace "<theme_name>" 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
|
Ctrl+O to save, Ctrl+X to exit
|
||||||
|
|
||||||
#### Update Grub config
|
#### Update Grub config
|
||||||
|
|
Loading…
Add table
Reference in a new issue