X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcustomize%2Ffred%2Ffred_variables.sh;h=88e4a1db8e47545de422e3afacd65096e1860001;hb=911b4b90b5ec838dfc06e7746c2a7385ccd04067;hp=0530dba2a23924faf1f991ca8a299ebc3c6e87d6;hpb=8f9139dd7856bf65218a9889fb1102a50b5d820c;p=feisty_meow.git diff --git a/scripts/customize/fred/fred_variables.sh b/scripts/customize/fred/fred_variables.sh index 0530dba2..88e4a1db 100644 --- a/scripts/customize/fred/fred_variables.sh +++ b/scripts/customize/fred/fred_variables.sh @@ -15,8 +15,18 @@ if [ -z "$USER_CUSTOMIZATIONS_LOADED" ]; then fi # add a bunch of personal folders to the list for checkin & checkout. - REPOSITORY_LIST+="cloud ebooks web active/webwork" -#feisty is back in the default list $(basename $FEISTY_MEOW_APEX) + REPOSITORY_LIST+="cloud ebooks web " + # add in any active projects. + if [ -d "$HOME/active" ]; then + REPOSITORY_LIST+="$(find "$HOME/active" -maxdepth 1 -mindepth 1 -type d) " + fi + # add in any of my applications that are in the apps folder. + if [ -d "$HOME/apps" ]; then + # first, simple projects. + REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 1 -mindepth 1 -type d) " + # then, site avenger specific projects. + REPOSITORY_LIST+="$(find "$HOME/apps" -maxdepth 2 -mindepth 2 -iname "avenger5" -type d) " + fi # adds our locally relevant archive folders into the list to be synched. ARCHIVE_COLLECTIONS_LIST+="/z/basement /z/imaginations /z/musix /z/toaster /z/walrus"