使用命令更改终端的背景

使用命令更改终端的背景

是否有一个命令可以更改终端的背景,而不是通过Edit -> Profile -> Edit -> Background下拉菜单来更改?

答案1

尝试下面的代码,看看它是否符合您的需求。在我的 Gnome 中,它会更改背景颜色实时。

请注意,它假设您需要原始配置文件;选择您喜欢的配置文件dconf dump / |grep legacy/profiles:/ |sed -r 's/^\[|\]$//g'并使用,profile=your_preferred_profile而不是下面的第一行。

profile="$(dconf dump / |grep legacy/profiles:/ |sed -r 's/^\[|\]$//g' |head -n1)"
dconf write /$profile/background-color "'rgb(50,50,50)'"
dconf write /$profile/foreground-color "'rgb(170,170,170)'"
dconf write /$profile/use-theme-colors false

相关内容