magic alias fix
[feisty_meow.git] / scripts / core / launch_feisty_meow.sh
1 #!/bin/bash
2
3 ##############
4
5 # Fred Hamster's Feisty Meow Concerns Ltd. Startup Profile.
6 #
7 # This file is useful within .profile or other initialization scripts.
8 #
9 # Author: Chris Koeritz
10
11 ##############
12
13 # SHELL_DEBUG: if this variable is non-empty, then it causes the feisty meow
14 # scripts to print more diagnostic information when they run.  not all
15 # scripts support this, but the core ones do.
16
17 #export SHELL_DEBUG=true
18
19 ##############
20
21 # some preconditions we want to establish before loading anything...
22
23 # make sure that aliases can be used in non-interactive shells.
24 shopt -s expand_aliases
25
26 # patch the user variable if we were launched by one of our cron jobs.
27 if [ -z "$USER" -a ! -z "$CRONUSER" ]; then
28   export USER="$CRONUSER"
29 fi
30
31 ##############
32
33 export ERROR_OCCURRED=
34   # there have been no errors to start with, at least.  we will set this
35   # to non-empty if something bad happens.
36
37 if [ -z "$FEISTY_MEOW_LOADING_DOCK" ]; then
38   # FEISTY_MEOW_LOADING_DOCK is where the generated files are located.
39   # this is our single entry point we can use without knowing any variables
40   # yet in the initialization process.
41   export FEISTY_MEOW_LOADING_DOCK="$HOME/.zz_feisty_loading"
42 #hmmm: the above is kind of a constant.  that's not so great.
43
44   # make sure our main variables are established.
45   FEISTY_MEOW_VARIABLES_LOADING_FILE="$FEISTY_MEOW_LOADING_DOCK/fmc_variables.sh"
46   if [ ! -f "$FEISTY_MEOW_VARIABLES_LOADING_FILE" ]; then
47     echo -e '\n\n'
48     echo "Feisty meow scripts need initialization via the bootstrap process, e.g.:"
49     echo "  bash $HOME/feisty_meow/scripts/core/reconfigure_feisty_meow.sh"
50     echo -e '\n\n'
51     ERROR_OCCURRED=true
52   fi
53
54   ##############
55
56   # pull in our generated variables that are the minimal set we need to find
57   # the rest of our resources.
58   source "$FEISTY_MEOW_VARIABLES_LOADING_FILE"
59
60   # Set up the temporary directory.
61   source "$FEISTY_MEOW_SCRIPTS/core/create_tempdir.sh"
62
63 fi
64
65 ##############
66
67 # load the larger body of standard feisty meow variables into the environment.
68 # we actually want this to always run also; it will decide what variables need
69 # to be set again.
70 source "$FEISTY_MEOW_SCRIPTS/core/variables.sh"
71
72 ##############
73   
74 # include helpful functions.  we do this every time rather than making it part
75 # of variable initialization, because functions cannot be exported to
76 # sub-shells in bash.
77 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
78   
79 # load some helper methods for the terminal which we'll use below.
80 source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
81
82 ##############
83   
84 # check hash table before searching path.
85 shopt -s checkhash
86 # don't check path for sourced files.
87 shopt -u sourcepath
88 # ignore duplicate lines.
89 HISTCONTROL=ignoredups
90 # append to the history file.
91 shopt -s histappend
92 # automatically update window size if needed.
93 shopt -s checkwinsize
94
95 ##############
96
97 # make history writes immediate to avoid losing history if bash is zapped.
98 echo $PROMPT_COMMAND | grep -q history
99 if [ $? -ne 0 ]; then
100   # we only change the prompt command if we think it hasn't already been done.
101   export PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
102 fi
103
104 ##############
105
106 # perform the bulkier parts of the initialization process.
107
108 if [ ! -z "$SHELL_DEBUG" ]; then echo "heavyweight init begins..."; fi
109
110 # set up the aliases for the shell, but only if they are not already set.
111 type CORE_ALIASES_LOADED &>/dev/null
112 if [ $? -ne 0 ]; then
113   if [ ! -z "$SHELL_DEBUG" ]; then
114     echo "the aliases were missing, now they are being added..."
115   fi
116   source "$FEISTY_MEOW_LOADING_DOCK/fmc_core_and_custom_aliases.sh"
117 fi
118
119 #echo before the new labelling, terminal titles have:
120 #show_terminal_titles
121
122 # a minor tickle of the title of the terminal, unless we already have some history.
123 label_terminal_with_info
124
125 if [ ! -z "$SHELL_DEBUG" ]; then echo "heavyweight init is done."; fi
126
127 if [ -z "$ERROR_OCCURRED" ]; then
128   # set a sentinel variable to say we loaded the feisty meow environment.
129   export FEISTY_MEOW_SCRIPTS_LOADED=true
130 fi
131