Condition for LS_COLORS updated.

This commit is contained in:
Kolan Sh 2013-03-18 17:20:18 +04:00
parent c1b1da5835
commit 2e02a00e96
1 changed files with 5 additions and 2 deletions

View File

@ -14,5 +14,8 @@ export PROMPT_COMMAND='history -a'
unset DBUS_SESSION_BUS_ADDRESS
[[ -f $HOME/.dircolors ]] && eval $(dircolors -b $HOME/.dircolors)
[[ -n "$DISPLAY" ]] && [[ -f $HOME/.dircolors_256 ]] && eval $(dircolors -b $HOME/.dircolors_256)
if [[ "linux" == "$TERM" && -f $HOME/.dircolors ]]; then
eval $(dircolors -b $HOME/.dircolors)
elif [[ "linux" != "$TERM" && -f $HOME/.dircolors_256 ]]; then
eval $(dircolors -b $HOME/.dircolors_256)
fi