web-dev-qa-db-ja.com

端子の色を一時的に変更する方法はありますか?

私はgnome-terminalを使用しており、ほとんどのエディターは白地に黒のテーマを使用しています。私のラボの1つでは、端末のスクリーンショット(プロセスを含む)をプログラムコードと一緒に提出する必要があります。

それで、できれば端末自体の中から、端末を一時的に白地に黒の配色に変更する方法はありますか?

そうでない場合、親端末に影響を与えることなく、反転した配色で子端末を起動する方法はありますか?

4
asheeshr

Gconftool-2-GNOME構成ツールを使用できます。まず、次の方法ですべてのgnomeプロファイルを一覧表示できます。

$ gconftool-2 --get /apps/gnome-terminal/global/profile_list
[Default,Profile0]

これで、選択したプロファイルの値を印刷できます。

$ gconftool-2 -a "/apps/gnome-terminal/profiles/Default"

前景色と背景色の値を保存します。

$ gconftool-2 --get "/apps/gnome-terminal/profiles/Default/foreground_color"
#000000000000
$ gconftool-2 --get "/apps/gnome-terminal/profiles/Default/background_color"
#EEEEEEEEECEC

これで、テーマカラーの使用をオフにできます。

$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_colors" --type bool false

そして、あなた自身の色を設定してください:

$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/foreground_color" --type string "#EEEEEEEEECEC"
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/background_color" --type string "#000000000000"
6
Nykakin