我想改变颜色.淡蓝色的文件名上的柠檬绿朦胧正在扼杀我的眼睛.
我不确定我是否使用xterm或gnome或其他什么,但我想更改默认的配色方案(最好是对我的角膜不那么冒犯)并让它保持不变(更新我的用户配置文件).
颜色很好,但有时它会使文本不可读.如果我不能有漂亮的颜色,我会满足于没有颜色,标准的B& W.
您需要在〜/ .dir_colors中配置LS_COLORS导出(系统范围为/ etc / dir_colors)
原文链接:https://www.f2er.com/ubuntu/348591.html请参阅此处获取文档:http://manpages.ubuntu.com/manpages/karmic/man5/dir_colors.5.html
::编辑::
为了坚持:
>将此附加到〜/ .bashrc
if [ "$TERM" != "dumb" ]; then [ -e "$HOME/.dir_colors" ] && DIR_COLORS="$HOME/.dir_colors" [ -e "$DIR_COLORS" ] || DIR_COLORS="" eval "`dircolors -b $DIR_COLORS`" alias ls='ls --color=auto' fi
>创建/编辑〜/ .dir_colors,
例如,使用dircolors –print-database> .dir_colors
>然后强制读取.bashrc文件:
$:source~ / .bashrc>一切都应该很漂亮.