Dconf settings in ~/.config/dconf/user.d/ not loaded
I've created valid keyfiles for configuring my Gnome terminal and placed them in ~/.config/dconf/user.d/termnial.conf
but those settings are not getting picked up by the dconf system. Is this the wrong location? Is there something else I need to enable this path as a possible location of key files?
I'm on a relatively fresh install of Ubuntu 18.10 (minimal install).
For reference, here's my keyfile:
[org/gnome/terminal/legacy/keybindings]
new-window='<Primary>n'
close-tab='<Primary>w'
close-window='<Primary>q'
new-tab='<Primary>t'
[org/gnome/terminal/legacy/profiles:]
list=['e83a0879-55a8-457a-8ff8-1c6e16e6456c', '01d81b02-4e2d-418b-af8a-d82db5437ccd']
default='e83a0879-55a8-457a-8ff8-1c6e16e6456c'
[org/gnome/terminal/legacy/profiles:/:e83a0879-55a8-457a-8ff8-1c6e16e6456c]
background-color='rgb(255,255,255)'
use-theme-colors=true
use-theme-transparency=false
visible-name='Basic'
foreground-color='rgb(0,0,0)'
use-system-font=false
font='Ubuntu Mono 12'
[org/gnome/terminal/legacy/profiles:/:01d81b02-4e2d-418b-af8a-d82db5437ccd]
background-color='rgb(0,43,54)'
use-theme-colors=false
use-theme-transparency=false
visible-name='Vagrant'
foreground-color='rgb(131,148,150)'
use-system-font=false
font='Ubuntu Mono 12'
dconf gsettings
add a comment |
I've created valid keyfiles for configuring my Gnome terminal and placed them in ~/.config/dconf/user.d/termnial.conf
but those settings are not getting picked up by the dconf system. Is this the wrong location? Is there something else I need to enable this path as a possible location of key files?
I'm on a relatively fresh install of Ubuntu 18.10 (minimal install).
For reference, here's my keyfile:
[org/gnome/terminal/legacy/keybindings]
new-window='<Primary>n'
close-tab='<Primary>w'
close-window='<Primary>q'
new-tab='<Primary>t'
[org/gnome/terminal/legacy/profiles:]
list=['e83a0879-55a8-457a-8ff8-1c6e16e6456c', '01d81b02-4e2d-418b-af8a-d82db5437ccd']
default='e83a0879-55a8-457a-8ff8-1c6e16e6456c'
[org/gnome/terminal/legacy/profiles:/:e83a0879-55a8-457a-8ff8-1c6e16e6456c]
background-color='rgb(255,255,255)'
use-theme-colors=true
use-theme-transparency=false
visible-name='Basic'
foreground-color='rgb(0,0,0)'
use-system-font=false
font='Ubuntu Mono 12'
[org/gnome/terminal/legacy/profiles:/:01d81b02-4e2d-418b-af8a-d82db5437ccd]
background-color='rgb(0,43,54)'
use-theme-colors=false
use-theme-transparency=false
visible-name='Vagrant'
foreground-color='rgb(131,148,150)'
use-system-font=false
font='Ubuntu Mono 12'
dconf gsettings
add a comment |
I've created valid keyfiles for configuring my Gnome terminal and placed them in ~/.config/dconf/user.d/termnial.conf
but those settings are not getting picked up by the dconf system. Is this the wrong location? Is there something else I need to enable this path as a possible location of key files?
I'm on a relatively fresh install of Ubuntu 18.10 (minimal install).
For reference, here's my keyfile:
[org/gnome/terminal/legacy/keybindings]
new-window='<Primary>n'
close-tab='<Primary>w'
close-window='<Primary>q'
new-tab='<Primary>t'
[org/gnome/terminal/legacy/profiles:]
list=['e83a0879-55a8-457a-8ff8-1c6e16e6456c', '01d81b02-4e2d-418b-af8a-d82db5437ccd']
default='e83a0879-55a8-457a-8ff8-1c6e16e6456c'
[org/gnome/terminal/legacy/profiles:/:e83a0879-55a8-457a-8ff8-1c6e16e6456c]
background-color='rgb(255,255,255)'
use-theme-colors=true
use-theme-transparency=false
visible-name='Basic'
foreground-color='rgb(0,0,0)'
use-system-font=false
font='Ubuntu Mono 12'
[org/gnome/terminal/legacy/profiles:/:01d81b02-4e2d-418b-af8a-d82db5437ccd]
background-color='rgb(0,43,54)'
use-theme-colors=false
use-theme-transparency=false
visible-name='Vagrant'
foreground-color='rgb(131,148,150)'
use-system-font=false
font='Ubuntu Mono 12'
dconf gsettings
I've created valid keyfiles for configuring my Gnome terminal and placed them in ~/.config/dconf/user.d/termnial.conf
but those settings are not getting picked up by the dconf system. Is this the wrong location? Is there something else I need to enable this path as a possible location of key files?
I'm on a relatively fresh install of Ubuntu 18.10 (minimal install).
For reference, here's my keyfile:
[org/gnome/terminal/legacy/keybindings]
new-window='<Primary>n'
close-tab='<Primary>w'
close-window='<Primary>q'
new-tab='<Primary>t'
[org/gnome/terminal/legacy/profiles:]
list=['e83a0879-55a8-457a-8ff8-1c6e16e6456c', '01d81b02-4e2d-418b-af8a-d82db5437ccd']
default='e83a0879-55a8-457a-8ff8-1c6e16e6456c'
[org/gnome/terminal/legacy/profiles:/:e83a0879-55a8-457a-8ff8-1c6e16e6456c]
background-color='rgb(255,255,255)'
use-theme-colors=true
use-theme-transparency=false
visible-name='Basic'
foreground-color='rgb(0,0,0)'
use-system-font=false
font='Ubuntu Mono 12'
[org/gnome/terminal/legacy/profiles:/:01d81b02-4e2d-418b-af8a-d82db5437ccd]
background-color='rgb(0,43,54)'
use-theme-colors=false
use-theme-transparency=false
visible-name='Vagrant'
foreground-color='rgb(131,148,150)'
use-system-font=false
font='Ubuntu Mono 12'
dconf gsettings
dconf gsettings
asked Mar 8 at 21:13
peterpeter
1394
1394
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can manually load the key files:
dconf load / < ~/.config/dconf/user.d/terminal.conf
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1124140%2fdconf-settings-in-config-dconf-user-d-not-loaded%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can manually load the key files:
dconf load / < ~/.config/dconf/user.d/terminal.conf
add a comment |
You can manually load the key files:
dconf load / < ~/.config/dconf/user.d/terminal.conf
add a comment |
You can manually load the key files:
dconf load / < ~/.config/dconf/user.d/terminal.conf
You can manually load the key files:
dconf load / < ~/.config/dconf/user.d/terminal.conf
answered Mar 8 at 21:18
peterpeter
1394
1394
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1124140%2fdconf-settings-in-config-dconf-user-d-not-loaded%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown