new version represents clean up of customized files, just prior to
[feisty_meow.git] / scripts / core / unix_login.sh
index 4d5c47688f14b1a39e4af9f2839ca18848827265..418677f3c3a5a065a0649355d39d534eb2d37e28 100644 (file)
@@ -6,16 +6,16 @@
 
 if [ ! -z "$SHELL_DEBUG" ]; then echo unix login begins...; fi
 
-GENERADIR=$(echo $GENERADIR | sed -e 's/\\/\//g')
-YETI_SCRIPTS="$(echo $YETI_SCRIPTS | sed -e 's/\\/\//g')"
-SHELLDIR="$YETI_SCRIPTS"
+FEISTY_MEOW_GENERATED=$(echo $FEISTY_MEOW_GENERATED | sed -e 's/\\/\//g')
+FEISTY_MEOW_SCRIPTS="$(echo $FEISTY_MEOW_SCRIPTS | sed -e 's/\\/\//g')"
+FEISTY_MEOW_SCRIPTS="$FEISTY_MEOW_SCRIPTS"
 
 # Set up all of the environment's system variables.  This is the first step
 # in the majestic plan we have for this shell's initialization.
-source $YETI_SCRIPTS/core/variables.sh
+source $FEISTY_MEOW_SCRIPTS/core/variables.sh
 
 # Also set up the temporary directory...
-source $YETI_SCRIPTS/core/create_tempdir.sh
+source $FEISTY_MEOW_SCRIPTS/core/create_tempdir.sh
 
 # ulimit and umask.  umask sets a permission mask for all file
 # creations.  The mask shown here disallows writing by the "group" and
@@ -32,7 +32,7 @@ if [ $? -ne 0 ]; then
   if [ ! -z "$SHELL_DEBUG" ]; then
     echo the aliases were missing, now they are added...
   fi
-  source $GENERADIR/aliases.sh
+  source $FEISTY_MEOW_GENERATED/aliases.sh
 fi
 
 # allow connections to our x server from the local host.
@@ -44,7 +44,7 @@ if [ ! -z "$DISPLAY" ]; then
 fi
 
 # a minor tickle of the title of the terminal, in case there is one.
-bash $YETI_SCRIPTS/tty/label_terminal_with_infos.sh
+bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh
 
 if [ ! -z "$SHELL_DEBUG" ]; then echo unix login ends....; fi