X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fcore%2Fvariables.sh;h=b3119ae55c96e584928a60e47cf417f6e04e4ed9;hb=b633fbb338874b684bb0879a92a012697e550adf;hp=9cecadf848a57d8bfb24090c9fdcb58e155f3138;hpb=88a4dcce8283a35723c94386b974a543852b77dc;p=feisty_meow.git diff --git a/scripts/core/variables.sh b/scripts/core/variables.sh index 9cecadf8..b3119ae5 100644 --- a/scripts/core/variables.sh +++ b/scripts/core/variables.sh @@ -130,7 +130,20 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then fi ############## + + # set up the color_add variable which is a flag that lets ls know colors work. + + # test if we can use color in ls... + ls --help 2>&1 | grep -i -q color + if [ $? -eq 0 ]; then + export color_add='--color=auto' + else + export color_add= + fi + unset test_ls_colors + ############## + # umask sets a permission mask for all file creations. # this mask disallows writes by "group" and "others". umask 022