added grub themes script (#493)

* added grub themes script

* Update tab_data.toml

* Update tabs/system-setup/7-grub-theme.sh

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* Update tabs/system-setup/7-grub-theme.sh

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>

* Update 7-grub-theme.sh

* Update tabs/system-setup/7-grub-theme.sh

Co-authored-by: Adam Perkowski <adas1per@protonmail.com>

---------

Co-authored-by: Nyx <144965845+nnyyxxxx@users.noreply.github.com>
Co-authored-by: Chris Titus <contact@christitus.com>
Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
This commit is contained in:
Guru Swarupa 2024-09-19 22:51:40 +05:30 committed by GitHub
parent 381155dad7
commit f14de70a6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,13 @@
#!/bin/sh -e
. ../common-script.sh
themeinstall(){
mkdir -p "$HOME/.local/share"
cd "$HOME/.local/share" && git clone "https://github.com/ChrisTitusTech/Top-5-Bootloader-Themes"
cd "$HOME/.local/share/Top-5-Bootloader-Themes"
"$ESCALATION_TOOL" ./install.sh
}
checkEnv
checkEscalationTool
themeinstall

View File

@ -89,4 +89,9 @@ script = "5-samba-ssh-setup.sh"
[[data]]
name = "Docker Setup"
script = "6-docker-setup.sh"
script = "6-docker-setup.sh"
[[data]]
name = "Grub Theme Setup"
script = "7-grub-theme.sh"