Linux

有沒有辦法臨時改變終端顏色?

  • February 9, 2013

我使用的gnome-terminal和我的大多數編輯器都帶有黑底白字主題,因為我發現它更容易讓人賞心悅目。我的一個實驗室要求與程式碼一起送出終端的螢幕截圖(帶有程序)。

那麼,有沒有辦法暫時將終端更改為黑白配色方案,最好是從終端本身內部?

如果沒有,有沒有辦法在不影響父終端的情況下啟動具有反轉配色方案的子終端?

您可以使用 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"

引用自:https://unix.stackexchange.com/questions/64268