X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=494c43c55aa5356932891fb6e77384f222946211;hb=dbebc751162f353ca8a4df80656e96bf51d37e01;hp=4ace5d80f3cbfad44ae81041fccfeafca20bda86;hpb=e882e7e4aa39c3b46696172d515af5e4c6a9d455;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 4ace5d80..494c43c5 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -453,6 +453,7 @@ if [ -z "$skip_all" ]; then unset -f function_sentinel # reload feisty meow environment in current shell. echo "reloading the feisty meow scripts." + echo source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" # run nechung oracle to give user a new fortune. nechung @@ -466,15 +467,15 @@ if [ -z "$skip_all" ]; then local custom_user="$1"; shift if [ -z "$custom_user" ]; then # use our default example user if there was no name provided. - custom_user=fred + custom_user=$(logname) fi save_terminal_title if [ ! -d "$FEISTY_MEOW_SCRIPTS/customize/$custom_user" ]; then - echo "The customization folder provided for $custom_user should be:" - echo " '$FEISTY_MEOW_SCRIPTS/customize/$custom_user'" - echo "but that folder does not exist. Skipping customization." + echo "The customization folder for '$custom_user' would be:" + echo " $FEISTY_MEOW_SCRIPTS/customize/$custom_user" + echo "but that folder does not exist. Skipping recustomization." return 1 fi @@ -929,6 +930,16 @@ return 0 ############## + # site avenger aliases + function switchto() + { + THISDIR="$FEISTY_MEOW_SCRIPTS/site_avenger" + source "$FEISTY_MEOW_SCRIPTS/site_avenger/shared_site_mgr.sh" + switch_to "$1" + } + + ############## + # NOTE: no more function definitions are allowed after this point. function function_sentinel()