X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Fvariables.sh;h=b64b167098c89726696ab05b7edb3ebeddf51ea4;hb=70de25680cc889b69c99a3e2371ab3d2793fef85;hp=a937d05dba10fa66be708817bc2c096956ff0f7a;hpb=8084462c8ce1908294b662120d40a8940539edac;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index a937d05d..b64b1670 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -226,9 +226,12 @@ define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 2 -mindepth 2 -iname "avenger5" -type d) " fi - # the archive collections list is a set of directories that are major - # repositories of data which can be synched to backup drives. - define_yeti_variable ARCHIVE_COLLECTIONS_LIST= + # the archive list is a set of directories that are major repositories of + # data which can be synched to backup drives. + define_yeti_variable MAJOR_ARCHIVE_SOURCES= + # the source collections list is a set of directories that indicate they + # harbor a lot of source code underneath. + define_yeti_variable SOURCECODE_HIERARCHY_LIST= # initializes the feisty meow build variables, if possible. function initialize_build_variables() @@ -287,8 +290,8 @@ fi ############## -# pull in the custom overrides for feisty_meow scripts. this is done last, -# because we want to set everything up as expected, then let the user +# pull in the custom overrides for feisty_meow scripts. this is done almost +# last, because we want to set everything up as expected, then let the user # override individual variables and definitions. we also don't guard this # to avoid running it again, because we don't know what mix of functions and # aliases they want to define in there. @@ -303,3 +306,37 @@ for i in $FEISTY_MEOW_LOADING_DOCK/custom/*.sh; do source "$i" done +############## + +# a late breaking action is to set the editor, if we can. +# we will fallback to whatever we can find on the host. +export EDITOR +if [ ! -z "$DISPLAY" ]; then + # only try to add bluefish, a gui editor, if there is an X display for it. + if [ -z "$EDITOR" ]; then + EDITOR="$(which bluefish)" + fi +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which gvim)" + if [ ! -z "$EDITOR" ]; then + # if we found gvim, then add in the no forking flag. + EDITOR+=" --nofork" + fi +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which vim)" +fi +if [ -z "$EDITOR" ]; then + EDITOR="$(which vi)" +fi +## +# out of ideas about editors at this point. +## +# set the VISUAL variable from EDITOR if we found an editor to use. +if [ ! -z "$EDITOR" ]; then + VISUAL="$EDITOR" +fi + +############## +