nice mod to use username for customization
authorChris Koeritz <fred@gruntose.com>
Fri, 18 May 2018 13:56:14 +0000 (09:56 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 18 May 2018 13:56:14 +0000 (09:56 -0400)
instead of assuming everybody loves the fred customization set, this now defaults to the user name as the customization package.

scripts/core/functions.sh

index db6d99096f93b0a1110dceb2f2d9f3ae58f1d558..efc7df5428303e52b9db3aa9fee300abfab4a1a1 100644 (file)
@@ -467,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