X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=efc7df5428303e52b9db3aa9fee300abfab4a1a1;hb=bb9a6f18f4f5c044eb154efb6c03092ba4fcf8d8;hp=dc01d786208a4b7e952e5252254fa4c1d2438cf2;hpb=15a332d7e02cf70f55d59e20b318f1f771c5d88b;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index dc01d786..efc7df54 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -452,6 +452,8 @@ if [ -z "$skip_all" ]; then unalias CORE_ALIASES_LOADED &>/dev/null 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 @@ -465,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 @@ -928,6 +930,16 @@ return 0 ############## + # site avenger aliases + function switchto() + { + WORKDIR="$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()