lsコマンドで表示されるディレクトリの文字色が青だと見辛い時があります。
そんな時に変更する方法を紹介します。
linuxでの変更方法
- ターミナルの色に関するファイルを取得
dircolors -p > ~/.colorrc
-
.colorrc
の中の, ディレクトリの色を指定しているところを変更 - 変更した
~/.colorrc
をlsの時に反映されるように~/.bashrcに追記
- ディレクトリの色を指定しているところはこんな感じになってます。
.colorrc
### 中略 ###
RESET 0 # reset to "normal" color
DIR 01;34 # directory
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
### 中略 ###
-
.bashrc
に追記する内容は以下です
.bashrc
eval `dircolors ~/.colorrc`
alias ls='ls --color=auto'
色と番号の対応は下の表のようになってます。
番号 | 色 |
---|---|
30 | 黒 |
31 | 赤 |
32 | 緑 |
33 | 黄 |
34 | 青 |
35 | 紫 |
36 | 水 |
37 | 白 |
https://www.gfd-dennou.org/arch/morikawa/memo/ls_colors.txt
macで変更する場合
LSCOLORSという環境変数に色のパラメータを指定してあげます。
config.fish
set -x LSCOLORS exfxcxdxbxegedabagacad
.bashrc
export LSCOLORS=exfxcxdxbxegedabagacad
alias ls='ls -G'
一番先頭(例ではex)がディレクトリの文字色を設定するパラメータです。
色とパラメータの対応は下の表のようになってます。
パラメータ | 色 |
---|---|
a | 黒 |
b | 赤 |
c | 緑 |
d | 茶 |
e | 青 |
f | マゼンタ |
g | シアン |
h | 明い灰 |