mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
f14de70a6a
* 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>
14 lines
320 B
Bash
14 lines
320 B
Bash
#!/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
|