From: Steven Baltakatei Sandoval Date: Sun, 28 Jun 2020 15:17:22 +0000 (+0000) Subject: feat(unitproc):Add script to load dconf settings from file X-Git-Tag: 0.1.0~13 X-Git-Url: https://zdv2.bktei.com/gitweb/BK-2020-03.git/commitdiff_plain/bbe7e1653cf1aa5da882eeb6411b56093886a4b4?hp=bbe7e1653cf1aa5da882eeb6411b56093886a4b4 feat(unitproc):Add script to load dconf settings from file Script is `bkdconfwf` (baltakatei dconf write file). Currently, the command: bkdconfwf gnome-terminal.conf is currently functionally the same as: dconf load / < gnome-terminal.conf where `gnome-terminal.conf` is a snippet taken from: dconf dump / > dconf_backup formatted like: [org/gnome/terminal/legacy/keybindings] prev-tab='b' find='disabled' move-tab-right='f' find-previous='disabled' next-tab='f' find-next='disabled' move-tab-left='b' However, because processes each & string individually, future custom behavior may be programmed into the script. For example, it may be desireable in the future to combine the following keys: key="'['one']'" key="'['two']'" into: key="'['one' 'two']'" . ---