mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
216f1a4836
* BIG CHANGES * core metadata * Added readme.md to the package * Moved the crate back to tui Co-authored-by: Liam <lj3954@users.noreply.github.com> --------- Co-authored-by: Liam <lj3954@users.noreply.github.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
|