feat(unitproc):Add script to load dconf settings from file
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 28 Jun 2020 15:17:22 +0000 (15:17 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Sun, 28 Jun 2020 15:17:22 +0000 (15:17 +0000)
commitbbe7e1653cf1aa5da882eeb6411b56093886a4b4
treed5cd5d07c0ae409b00223bfa1b0b448a0bffba4b
parenta36416739b399ae388da41ecd86a95e848a7397b
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='<Primary><Shift>b'
    find='disabled'
    move-tab-right='<Shift><Alt>f'
    find-previous='disabled'
    next-tab='<Primary><Shift>f'
    find-next='disabled'
    move-tab-left='<Shift><Alt>b'

However, because processes each <key> & <value> 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']'"

.
unitproc/bkdconfwf [new file with mode: 0644]