mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 13:39:41 +00:00
64e8492c04
* Refactor existing shell scripts & moving scripts around * attempt to fix conflicts * fix extra space * fix lowercase Y issues * Fix conflicts * fix scattered stuff around toml * fix syntax issue --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
15 lines
321 B
Bash
15 lines
321 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
|