Updated Installation (markdown)

Adrian Środoń 2022-11-06 14:16:55 +01:00
parent ee57f68ceb
commit d759a7a19e

@ -1,6 +1,6 @@
## Installation via GRUB Customizer ## Installation via GRUB Customizer
In order to clone the repository from GitHub, you have to install Git, via the `git` package <br> In order to clone the repository from GitHub, you have to install Git, via the `git` package.
Alternatively, you can download a zip archive by clicking on **Code** then **Download ZIP** Alternatively, you can download a zip archive by clicking on **Code** then **Download ZIP**
#### Clone the repository #### Clone the repository
@ -29,9 +29,13 @@ pacman
sudo pacman -S grub-customizer sudo pacman -S grub-customizer
``` ```
dnf<br> > **⚠ WARNING**
**WARNING**: Grub Customizer DOES NOT WORK on recent Fedora releases without extensive modification. [Manually installing](#manual-installation) a GRUB theme is much more secure and hassle free. Use at your own risk. > Grub Customizer DOES NOT WORK on recent Fedora releases without extensive modification.
> [Manually installing](#manual-installation) a GRUB theme is much more secure and hassle free.
> Use this at your own risk.
dnf
```shell ```shell
sudo dnf install grub-customizer sudo dnf install grub-customizer
@ -76,7 +80,7 @@ To revert back to the orignal KDE Neon theme, open GRUB Customizer, and in the A
## Manual Installation ## Manual Installation
In order to clone the repository from GitHub, you have to install Git, via the `git` package <br> In order to clone the repository from GitHub, you have to install Git, via the `git` package
Alternatively, you can download a zip archive by clicking on **Code** then **Download ZIP** Alternatively, you can download a zip archive by clicking on **Code** then **Download ZIP**
#### Clone the repository #### Clone the repository
@ -87,9 +91,9 @@ You can clone the repository, or go to the [release page](https://github.com/Adi
git clone https://github.com/AdisonCavani/distro-grub-themes.git git clone https://github.com/AdisonCavani/distro-grub-themes.git
``` ```
#### Create the themes directory #### Create themes directory
To create the themes directory, replace `BOOT_GRUB_LOCATION` with the directory where GRUB is located.<br> To create themes directory, replace `BOOT_GRUB_LOCATION` with the directory where GRUB is located.
Usually it's /boot/grub or /boot/grub2 but some distributions have a different one, so you'll have to figure it out. Usually it's `/boot/grub` or `/boot/grub2` but some distributions have a different one, so you'll have to figure it out.
```shell ```shell
sudo mkdir BOOT_GRUB_LOCATION/themes sudo mkdir BOOT_GRUB_LOCATION/themes
@ -113,7 +117,7 @@ sudo cp -r <theme_name>/ BOOT_GRUB_LOCATION/themes
You can use your favourite text editor for this. Here, we use nano. You can use your favourite text editor for this. Here, we use nano.
``` ```shell
sudo nano /etc/default/grub sudo nano /etc/default/grub
``` ```
@ -139,7 +143,7 @@ You'll need to tell GRUB to update its configuration in order to include the new
##### Ubuntu and Debian-based systems: ##### Ubuntu and Debian-based systems:
``` ```shell
sudo update-grub sudo update-grub
``` ```