From 916f300089e0ba1d23a2813044ab98ca963b41c4 Mon Sep 17 00:00:00 2001 From: Ryan Delaney Date: Mon, 10 Feb 2020 10:59:58 -0800 Subject: [PATCH] Name the local files `.LS_COLORS` not `.dircolors` Fixes #122 --- README.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 2707bd6..c00f3d7 100644 --- a/README.markdown +++ b/README.markdown @@ -42,14 +42,14 @@ Here's a screenshot _(font and minor color shades, of course, depend on terminal To install and use this file, put something like this in your shell resource file: ```shell -eval $( dircolors -b $HOME/.dircolors ) +eval $( dircolors -b $HOME/.LS_COLORS ) ``` A quick way to install would be the following set of commands (assuming bash): ```shell -wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.dircolors -echo 'eval $(dircolors -b $HOME/.dircolors)' >> $HOME/.bashrc +wget https://raw.github.com/trapd00r/LS_COLORS/master/LS_COLORS -O $HOME/.LS_COLORS +echo 'eval $(dircolors -b $HOME/.LS_COLORS)' >> $HOME/.bashrc . $HOME/.bashrc ``` @@ -77,7 +77,7 @@ realtime, using these colors. ## fish shell ```fish -eval ( dircolors --c-shell $HOME/.dircolors) +eval ( dircolors --c-shell $HOME/.LS_COLORS) ``` Place it in `~/.config/fish/config.fish` or any `*.fish*` file inside `~/.config/fish/conf.d/` to be loaded.