dots+ > dotsplus

This commit is contained in:
tuxwarrior
2024-05-04 15:12:55 -05:00
parent a4a26d8e1c
commit ed62bf25f8
2 changed files with 7 additions and 7 deletions

View File

@@ -179,8 +179,8 @@ if [ ${operation} == "dots" ] ; then
fi fi
# dots+ (wallpapers, fonts ++) # dotsplus (wallpapers, fonts ++)
if [ ${operation} == "dots+" ] ; then if [ ${operation} == "dotsplus" ] ; then
echo "***** ${operation} *****" echo "***** ${operation} *****"
rm -rf ${clone_trg}/dotsplus-main rm -rf ${clone_trg}/dotsplus-main

View File

@@ -31,7 +31,7 @@ fi
this_file_name=`basename "$0"` this_file_name=`basename "$0"`
if [ $# -lt 1 ]; then if [ $# -lt 1 ]; then
echo "usage: '$this_file_name { dots | dots+ | uf / upd-full [host]? | sw / software {update/install} [host]? | us / upd-self | yay }'" echo "usage: '$this_file_name { dots | dotsplus | uf / upd-full [host]? | sw / software {update/install} [host]? | us / upd-self | yay }'"
exit 1 exit 1
fi fi
@@ -41,7 +41,7 @@ parameter_2=$3
shopt -s extglob shopt -s extglob
case $operation in case $operation in
!(dots|dots+|uf|upd-full|sw|software|us|upd-self|yay)) !(dots|dotsplus|uf|upd-full|sw|software|us|upd-self|yay))
echo "error: unknown operation '$operation'" echo "error: unknown operation '$operation'"
exit exit
;; ;;
@@ -72,11 +72,11 @@ if [ $operation == "dots" ] ; then
fi fi
shopt -u extglob shopt -u extglob
# update dots+ (wallpapers, fonts, ++) # update dotsplus (wallpapers, fonts, ++)
shopt -s extglob shopt -s extglob
if [ $operation == "dots+" ] ; then if [ $operation == "dotsplus" ] ; then
execute_script 99_deploy.sh dots+ execute_script 99_deploy.sh dotsplus
fi fi
shopt -u extglob shopt -u extglob