Make your Grub look like you are inside the game.
Abigail Roberts | Arthur Morgan | Bill Williamson |
Charles Smith | Dutch Van Der Linde | Hosea Matthews |
John Marston | Lenny | Micah Bell |
Sadie Adler | Simon Pearson | Uncle |
There are many ways to install this theme.
Required packages:
$ sudo apt-get update
$ sudo apt-get install git
[dnf]
$ sudo dnf install git
[yum]
$ sudo yum install git
$ sudo pacman -S git
The script provides a nice Cli based prompt for simple installation of the themes, including multiple choice prompts and backgrounds, and the ability to create tarball based on different specifications.
$ git clone https://github.com/NAHDI51/rdr2-grub-theme.git
cd rdr2-grub-theme
sudo chmod +x main.sh
./main.sh
Running this script, you'll be prompted to a multiple-choice based system, which is mostly self explanatory. upon completion, the theme will be installed in your system.
Required packages
$ sudo add-apt-repository ppa:trebelnik-stefina/grub-customizer
$ sudo apt update
$ sudo apt install grub-customizer
[dnf]
$ sudo dnf install grub-customizer
[yum]
$ sudo yum install grub-customizer
$ sudo pacman -S grub-customizer
$ git clone https://github.com/NAHDI51/rdr2-grub-theme.git
- Open grub customizer. Type
$ sudo grub-customizer
- Click on the Appearance settings tab
- Enable custom resolution and select your resolution, e.g 3840x2160
- Press the add theme button, then navigate to the directory where you cloned. Afterwards, navigate to themes. In other words, navigate to
$DIR/rdr2-grub-theme/themes
- Click on the archive file you want you want. In other words, click on
{$CHARACTER_NAME}.tar.gz
- Reboot your system and enjoy.
systemctl reboot
The most complicated one, but not hard nonetheless.
git clone https://github.com/NAHDI51/rdr2-grub-theme.git && cd rdr2-grub-theme
sudo cp -a create/$(CHARACTER_NAME) /usr/share/grub/themes
Replace $(CHARACTER_NAME)
with the name of the character theme you want to install.
sudo nano /etc/default/grub
And add the line:
GRUB_THEME="/usr/share/grub/themes/$(CHARACTER_NAME)/theme.txt"
Again, replace $(CHARACTER_NAME)
with the name of the character theme you want to the install.
If there are any other instances of GRUB_THEME
variable, be sure to comment it.
# GRUB_THEME="path/to/another/theme"
Create a script and enter to edit it.
touch grub-update.sh
nano grub-update.sh
Add the following lines in the file:
#!/bin/bash
# checks whether a command is available
function has_command() {
command -v $1 > /dev/null
}
# Updates the grub
grub-update() {
if has_command update-grub; then
update-grub
elif has_command grub-mkconfig; then
grub-mkconfig -o /boot/grub/grub.cfg
elif has_command grub2-mkconfig; then
if has_command zypper; then
grub2-mkconfig -o /boot/grub2/grub.cfg
elif has_command dnf; then
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
fi
fi
}
grub-update
Run this script.
sudo chmod +x grub-update.sh
sudo ./grub-update.sh
And the theme is installed in your system.