better naming... bootstrap_shells => reconfigure_feisty_meow and bootstrap_build...
[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 export ERROR_OCCURRED=
22   # there have been no errors to start with, at least.  we will set this
23   # to non-empty if something bad happens.
24
25 if [ -z "$FEISTY_MEOW_LOADING_DOCK" ]; then
26   # FEISTY_MEOW_LOADING_DOCK is where the generated files are located.
27   # this is our single entry point we can use without knowing any variables
28   # yet in the initialization process.
29   export FEISTY_MEOW_LOADING_DOCK="$HOME/.zz_feisty_loading"
30 #hmmm: the above is kind of a constant.  that's not so great.
31
32   # make sure our main variables are established.
33   FEISTY_MEOW_VARIABLES_LOADING_FILE="$FEISTY_MEOW_LOADING_DOCK/fmc_variables.sh"
34   if [ ! -f "$FEISTY_MEOW_VARIABLES_LOADING_FILE" ]; then
35     echo -e '\n\n'
36     echo "Feisty meow scripts need initialization via the bootstrap process, e.g.:"
37     echo "  bash $HOME/feisty_meow/scripts/core/reconfigure_feisty_meow.sh"
38     echo -e '\n\n'
39     ERROR_OCCURRED=true
40   fi
41
42   ##############
43
44   # pull in our generated variables that are the minimal set we need to find
45   # the rest of our resources.
46   source "$FEISTY_MEOW_VARIABLES_LOADING_FILE"
47
48   # Set up the temporary directory.
49   source $FEISTY_MEOW_SCRIPTS/core/create_tempdir.sh
50
51 fi
52
53 ##############
54
55 # load the larger body of standard feisty meow variables into the environment.
56 # we actually want this to always run also; it will decide what variables need
57 # to be set again.
58 source $FEISTY_MEOW_SCRIPTS/core/variables.sh
59
60 ##############
61   
62 # include helpful functions.  we do this every time rather than making it part
63 # of variable initialization, because functions cannot be exported to
64 # sub-shells in bash (much like aliases cannot, to our infinite chagrin after
65 # having migrated from korn shell...).
66 source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
67   
68 ##############
69   
70 # check hash table before searching path.
71 shopt -s checkhash
72 # don't check path for sourced files.
73 shopt -u sourcepath
74 # ignore duplicate lines.
75 HISTCONTROL=ignoredups
76 # append to the history file.
77 shopt -s histappend
78 # automatically update window size if needed.
79 shopt -s checkwinsize
80
81 ##############
82
83 if [ -z "$LIGHTWEIGHT_INIT" ]; then
84   # perform the bulkier parts of the initialization process.
85
86   if [ ! -z "$SHELL_DEBUG" ]; then echo "heavyweight init begins..."; fi
87
88   # set up the aliases for the shell, but only if they are not already set.
89   if [ -z "$CORE_ALIASES_LOADED" ]; then
90     if [ ! -z "$SHELL_DEBUG" ]; then
91       echo "the aliases were missing, now they are being added..."
92     fi
93     source "$FEISTY_MEOW_LOADING_DOCK/fmc_core_and_custom_aliases.sh"
94   fi
95
96   # allow connections to our x server from the local host.
97   if [ ! -z "$DISPLAY" ]; then
98     if [ ! -z "$(echo "$OS_TYPE" | grep -i darwin)" ]; then
99       if [ ! -z "$SHELL_DEBUG" ]; then echo "Enabling localhost X connections..."; fi
100       xhost + localhost >/dev/null 2>&1
101     fi
102   fi
103
104   # a minor tickle of the title of the terminal, in case there is one.
105   bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh
106
107   if [ ! -z "$SHELL_DEBUG" ]; then echo "heavyweight init is done."; fi
108 fi
109
110 if [ -z "$ERROR_OCCURRED" ]; then
111   # set a sentinel variable to say we loaded the feisty meow environment.
112   export FEISTY_MEOW_SCRIPTS_LOADED=true
113 fi
114