UbuntuのGNOME端末に Solarized colorsを使用する方法
github gnome-terminal-colors-solarizedに移動する。
gitレポジトリからGNOME用のSolarizedをカレントディレクトリにインストール。
$ git git clone git://github.com/sigurdga/gnome-terminal-colors-solarized.git
gnome-terminal-colors-solarizedディレクトリに移動。
$ cd gnome-terminal-colors-solarized
スクリプトの実行。
./install.sh
好きなカラースキームを選択する。
Please select a color scheme:
1)dark
2)light
Gnomeプロファイルを1)デフォルトを選択してYESと入力する。
このままだと、文字色が変わらないので次のWebページを参考にしました。
http://michaelheap.com/getting-solarized-working-on-ubuntu/
GNOME端末に次のコマンドを実行(コピーアンドペースト)
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_background" --type bool false
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_colors" --type bool false
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/palette" --type string "#070736364242:#D3D301010202:#858599990000:#B5B589890000:#26268B8BD2D2:#D3D336368282:#2A2AA1A19898:#EEEEE8E8D5D5:#00002B2B3636:#CBCB4B4B1616:#58586E6E7575:#65657B7B8383:#838394949696:#6C6C7171C4C4:#9393A1A1A1A1:#FDFDF6F6E3E3"
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/background_color" --type string "#00002B2B3636"
gconftool-2 --set "/apps/gnome-terminal/profiles/Default/foreground_color" --type string "#65657B7B8383"
dircolorsをインストール
$ curl https://raw.github.com/seebi/dircolors solarized/master/dircolors.256dark > ~/.dircolors
.bashrcに次のスクリプトを追加してGNOME端末を再度立ち上げる。
if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" fi