Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Latest commit

 

History

History
19 lines (13 loc) · 510 Bytes

README.mkd

File metadata and controls

19 lines (13 loc) · 510 Bytes

To install, just copy the dircolors file to your home directory like this:

cp dircolors-8 ~/.dircolors-8
cp dircolors-256 ~/.dircolors-256

In your shell configuration files, add the following:

dircolors=$HOME/.dircolors-$(tput colors)

if [[ -f $dircolors ]]; then
    eval $(dircolors -b $dircolors)
else
    eval $(dircolors)
fi

If you want to contribute, just fork and edit the dircolors.yml file. You can generate a new dircolors file like this:

python dircolors.py