diff --git a/tabs/system-setup/7-grub-theme.sh b/tabs/system-setup/7-grub-theme.sh new file mode 100644 index 00000000..1e860576 --- /dev/null +++ b/tabs/system-setup/7-grub-theme.sh @@ -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 diff --git a/tabs/system-setup/tab_data.toml b/tabs/system-setup/tab_data.toml index 4eabb4d5..e105139c 100644 --- a/tabs/system-setup/tab_data.toml +++ b/tabs/system-setup/tab_data.toml @@ -89,4 +89,9 @@ script = "5-samba-ssh-setup.sh" [[data]] name = "Docker Setup" -script = "6-docker-setup.sh" \ No newline at end of file +script = "6-docker-setup.sh" + +[[data]] +name = "Grub Theme Setup" +script = "7-grub-theme.sh" +