====== dconf ======
* https://wiki.gnome.org/Projects/dconf
* [[linux:gnome|Gnome]]에서 만든 시스템 설정 백엔드.
* ''/path/to/key'' 형태로 기술한다.
===== read/write =====
dconf read '/path/to/key' # 마지막은 /로 끝나면 안됨
dconf write '/path/to/key' "value" # 값은 GVariant 포맷이어야 한다.
dconf write '/path/to/key' "'문자열값'" # 문자열 값은 홑따옴표 필요함.
===== import/export (backup/restore) =====
* [[https://askubuntu.com/questions/1025096/export-import-gnome-terminal-profile-settings|export/import gnome-terminal profile settings - Ask Ubuntu]]
# export
dconf dump /org/gnome/terminal/ > gnome_terminal_settings_backup.txt
# import
dconf load /org/gnome/terminal/ < gnome_terminal_settings_backup.txt
==== 참조 ====
* [[https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/using_the_desktop_environment_in_rhel_8/configuring-gnome-at-low-level_using-the-desktop-environment-in-rhel-8|Chapter 6. Configuring GNOME at low level Red Hat Enterprise Linux 8 | Red Hat Customer Portal]]