Themes of ls --color for Bash Shell
Replace the ls_color theme file you want:
wget https://raw.githubusercontent.com/yidas/shell/master/ls_colors/yidas.sh
You could download into your directory such as ~/ls_colors/monokai.sh
then source it.
you could add above script with setting path into .bashrc
or other source you like:
# Load Theme
if [ -n "${BASH_VERSION}" ]; then
ls_colors_theme="${HOME}/ls_colors/yidas.sh"
if [ -f "$ls_colors_theme" ]; then
source "$ls_colors_theme"
fi
fi
Replace the ls_color theme file you want