From a4a26d8e1cfd690246e0c8fc06108a76fc6ff271 Mon Sep 17 00:00:00 2001 From: tuxwarrior Date: Sat, 4 May 2024 14:36:12 -0500 Subject: [PATCH] wp > dots+ --- scripts/curae.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/scripts/curae.sh b/scripts/curae.sh index 23c0965..1829b68 100644 --- a/scripts/curae.sh +++ b/scripts/curae.sh @@ -31,7 +31,7 @@ fi this_file_name=`basename "$0"` if [ $# -lt 1 ]; then - echo "usage: '$this_file_name { dots | uf / upd-full [host]? | sw / software {update/install} [host]? | us / upd-self | yay | wp }'" + echo "usage: '$this_file_name { dots | dots+ | uf / upd-full [host]? | sw / software {update/install} [host]? | us / upd-self | yay }'" exit 1 fi @@ -41,7 +41,7 @@ parameter_2=$3 shopt -s extglob case $operation in - !(dots|uf|upd-full|sw|software|us|upd-self|yay|wp)) + !(dots|dots+|uf|upd-full|sw|software|us|upd-self|yay)) echo "error: unknown operation '$operation'" exit ;; @@ -72,6 +72,15 @@ if [ $operation == "dots" ] ; then fi shopt -u extglob +# update dots+ (wallpapers, fonts, ++) +shopt -s extglob +if [ $operation == "dots+" ] ; then + + execute_script 99_deploy.sh dots+ + +fi +shopt -u extglob + # install software (update system) shopt -s extglob if [ $operation == "sw" ] || [ $operation == "software" ] ; then @@ -126,12 +135,3 @@ if [ $operation == "yay" ] ; then fi shopt -u extglob - -# update wallpapers -shopt -s extglob -if [ $operation == "wp" ] ; then - - execute_script 99_deploy.sh wp - -fi -shopt -u extglob