在 Ubuntu 中使用命令更改 gnome 终端透明度?

在 Ubuntu 中使用命令更改 gnome 终端透明度?

如何使用命令更改 Ubuntu 中终端窗口的透明度?

我已经了解配置文件方法,但需要一个命令,以便我可以在透明和不透明之间快速切换。

我的终端是 GNOME 终端 2.30.2

答案1

您可以使用 gconftool 和 /apps/gnome-terminal/profiles/Default/background_type 键(您可能必须使用与“Default”不同的配置文件名称):

gconftool -s -t string /apps/gnome-terminal/profiles/Default/background_type solid
gconftool -s -t string /apps/gnome-terminal/profiles/Default/background_type transparent

这是在3.0.1版本中测试过的,但是命令应该是一样的。

答案2

如果您希望以连续而不是离散的步骤更改透明度,请尝试:

gconftool-2 --set /apps/gnome-terminal/profiles/Default/background_darkness --type=float 0.50 其中 /apps/gnome-terminal/profiles/Default/background_darkness 是钥匙0.50 是价值

相关内容