Gnome-Terminal

如何導出 gnome 終端配置文件?

  • May 11, 2020

是否可以將 gnome-terminal 配置文件導出到另一台電腦?

我使用編輯>首選項創建一個終端配置文件並將其保存為“def”。我想將配置保存在一個文件中並在另一台電腦上使用它。

我嘗試在 .config/dconf/ 中 grep “def”並找到

Binary file dconf/user matches

是否可以從配置中提取資訊(特別是關於顏色,需要大量時間才能找到正確的顏色)並在另一台電腦中使用它們。

我正在使用帶有 gnome 的 Fedora 28。

4.16.13-300.fc28.x86_64, gnome-terminal-3.28.2-2.fc28.x86_64.

您可以使用dconf(1)轉儲和載入 gnome-terminal 配置文件。我從這個來源得到了基本的命令用法:

https://gist.github.com/reavon/0bbe99150810baa5623e5f601aa93afc

要從一個系統導出所有 gnome-terminal 配置文件,然後將它們載入到另一個系統上,您將發出以下命令:

源系統:

$ dconf dump /org/gnome/terminal/legacy/profiles:/ > gnome-terminal-profiles.dconf

目標系統(傳輸 gnome-terminal-profiles.dconf 文件後):

$ dconf load /org/gnome/terminal/legacy/profiles:/ < gnome-terminal-profiles.dconf

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