如何通过命令改变终端线颜色?

如何通过命令改变终端线颜色?

我想使用命令改变我的 gnome-terminal 线条颜色。

我知道如何通过转到个人资料并单击来更改它

配置文件”-“配置文件首选项”-“颜色”-“背景颜色”,但我想使用命令。

答案1

在当前版本的 gnome-terminal 中,启动新终端时无法更改背景和颜色。以前可以使用以下选项:--background <color>--foreground <color>

现在您可以启动您的终端并指定配置文件:

gnome-terminal --window-with-profile <your profile>

您还可以使用 gconftool 编辑当前配置文件。例如,编辑默认配置文件的颜色:


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"

答案2

你可能感兴趣主题文件。它是一个自包含的脚本,带有许多预先打包的主题,可以像这样使用:

theme.sh <themename>

答案3

终端选项有限。安装 Terminator,有许多可用选项,多个窗口。您可以选择背景和字体颜色。所有操作都通过首选项 GUI 界面完成。

命令行

sudo apt-get update
sudo apt-get install terminator

或者,通过软件中心获取它。

也可以通过命令行通过编辑 Terminator 配置文件来设置首选项。

cd /.config/terminator/
gedit config

所有可用的编辑选项的手册页都包含在关联

相关内容