mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
28533b9f38
* Always use printf with %b\n unless a different var is needed * fix some conflicts * fix conflicts * Update ssh.sh --------- Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com> Co-authored-by: Chris Titus <contact@christitus.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
|