Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added grub themes script #493

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tabs/system-setup/7-grub-theme.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/sh -e
. ../common-script.sh

themeinstall(){
guruswarupa marked this conversation as resolved.
Show resolved Hide resolved
cd "$HOME" && git clone "https://github.com/ChrisTitusTech/Top-5-Bootloader-Themes"
guruswarupa marked this conversation as resolved.
Show resolved Hide resolved
cd "Top-5-Bootloader-Themes"
guruswarupa marked this conversation as resolved.
Show resolved Hide resolved
$ESCALATION_TOOL ./install.sh
ChrisTitusTech marked this conversation as resolved.
Show resolved Hide resolved
}

checkEnv
checkEscalationTool
themeinstall
8 changes: 6 additions & 2 deletions tabs/system-setup/tab_data.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,14 @@ name = "Remove Snaps"
description = "This script is designed to remove snap"
script = "4-remove-snaps.sh"

[[data]]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[[data]]

You cannot remove this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again some issue when i pull the fork ig. i did not touch other part of the script. yet has modification. my bad

name = "SSH-Samba Setup"
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"

Loading