Last active
July 8, 2024 17:09
-
-
Save MattCurryCom/6348692ffd9903d249907fb5212056d5 to your computer and use it in GitHub Desktop.
Mac Color fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
####################### | |
#### Author: Matt Curry | |
#### Date 07/08/24 | |
#### Adds Colors to mac shell, so you can see the difference between directories/files/etc... | |
####################### | |
# or for .profile | |
echo " " >> ~/.profile | |
echo "# Mac Color Fix" >> ~/.profile | |
echo "export CLICOLOR=1" >> ~/.profile | |
echo "export LSCOLORS=GxFxCxDxBxegedabagaced" >> ~/.profile | |
# Re-Open Terminal after applying. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment