mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-02-23 17:37:03 +00:00
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"
|
|
elevated_execution ./install.sh
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
themeinstall
|