X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Funix_login.sh;h=418677f3c3a5a065a0649355d39d534eb2d37e28;hb=04943c790d69b0773f92481506cb597fd8e919f1;hp=4d5c47688f14b1a39e4af9f2839ca18848827265;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/core/unix_login.sh b/scripts/core/unix_login.sh index 4d5c4768..418677f3 100644 --- a/scripts/core/unix_login.sh +++ b/scripts/core/unix_login.sh @@ -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