gnome-terminal 配置文件未加载

gnome-terminal 配置文件未加载

我的终端最近崩溃了。崩溃后,唯一加载的终端配置文件是unnamed。我有一个默认配置文件

/home/xxxx/.gconf/apps/gnome-terminal/profiles/Default

它也能被识别gconf-editor,但是,gnome-terminal 或应用程序中的菜单选项却无法识别它。如何让终端识别我的默认配置文件?

答案1

Gnome 终端设置(包括配置文件)现在存储在dconf而不是 中gconf。虽然gconf使用人类可读的 XML 文件来存储可以直接编辑的数据,但dconf设置需要通过界面进行编辑。

要在 GUI 中编辑它们,请先安装dconf-toolssudo apt-get install dconf-tools),然后运行命令dconf-editor,并导航到

org > gnome > terminal > legacy > profiles:

你会在那里找到你所有的配置文件,但请注意,设置键似乎是唯一唯一标识符并且配置文件名称在visible-name下面的键中。

您可以使用以下命令列出您的配置文件:

dconf dump /org/gnome/terminal/legacy/profiles:/ | grep -e "\[\:\|visible-name"

您可以使用以下命令从命令行转储或加载配置文件:

dconf dump /org/gnome/terminal/legacy/profiles:/:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/ > profile.dconf
dconf load /org/gnome/terminal/legacy/profiles:/:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/ < profile.dconf

相关内容