〜/ .profileファイルにこの関数を追加しました:
function color {
case $1 in
green)
echo -e "\033]6;1;bg;red;brightness;57\a"
echo -e "\033]6;1;bg;green;brightness;197\a"
echo -e "\033]6;1;bg;blue;brightness;77\a"
;;
red)
echo -e "\033]6;1;bg;red;brightness;270\a"
echo -e "\033]6;1;bg;green;brightness;60\a"
echo -e "\033]6;1;bg;blue;brightness;83\a"
;;
orange)
echo -e "\033]6;1;bg;red;brightness;227\a"
echo -e "\033]6;1;bg;green;brightness;143\a"
echo -e "\033]6;1;bg;blue;brightness;10\a"
;;
esac
}
この関数を追加した後、新しいターミナルセッションを開く必要があります。次を入力できます:
$ color green
または
$ color orange
タブの色を変更します。
Photoshopを使用して色を構成します。
このカラーピッカーの値は、次のコマンドに変換できます(R->赤、G->緑、B->青の値を「明るさ」の後の右側の行に挿入するだけで、別の色が得られます)。
echo -e "\033]6;1;bg;red;brightness;57\a"
echo -e "\033]6;1;bg;green;brightness;197\a"
echo -e "\033]6;1;bg;blue;brightness;77\a"