mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 13:39:41 +00:00
e6172ccec7
* dir backup * - * suggestions by @nnyyxxxx Co-authored-by: nyx <nnyyxxxx@users.noreply.github.com> --------- Co-authored-by: nyx <nnyyxxxx@users.noreply.github.com>
19 lines
397 B
Bash
19 lines
397 B
Bash
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
themeinstall(){
|
|
mkdir -p "$HOME/.local/share"
|
|
cd "$HOME/.local/share"
|
|
if [ -d 'Top-5-Bootloader-Themes' ]; then
|
|
rm -rf 'Top-5-Bootloader-Themes'
|
|
fi
|
|
git clone "https://github.com/ChrisTitusTech/Top-5-Bootloader-Themes"
|
|
cd "Top-5-Bootloader-Themes"
|
|
"$ESCALATION_TOOL" ./install.sh
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
themeinstall
|