2 Commits
0.3.0 ... 0.4.0

3 changed files with 3 additions and 12 deletions

View File

@@ -1,12 +1,3 @@
for source in colored_commands \
convenience_aliases \
docker_aliases \
git_functions \
histcontrol \
home_bin_folder \
ls_aliases \
safety_aliases \
terminal_colors \
${TERMINAL_FANCIFY}; do
. "$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )/$source"
for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -v "_all"); do
. "${source}"
done

View File

@@ -43,7 +43,7 @@ _delete() {
_bashrc_ref() {
echo "#REF:bashrc_overrides:REF" >> ~/.bashrc
echo "export TERMINAL_FANCIFY=terminal_fancyfying" >> ~/.bashrc
echo "export TERMINAL_FANCYFY=client" >> ~/.bashrc
echo ". ${THIS}/bashrc_overrides/_all" >> ~/.bashrc
}