Save custom keyboard shortcuts in Gnome
Clash Royale CLAN TAG#URR8PPP
On my Debian system I've customized my Gnome (Shell) keyboard shortcuts, via System Settings > Keyboard > Shortcuts.
Where do I find the file with these settings so that I can copy the file onto a flash drive for backup and then use it to replace the keyboard shortcuts on other Gnome systems?
gnome keyboard-shortcuts gnome3 gnome-shell dconf
add a comment |
On my Debian system I've customized my Gnome (Shell) keyboard shortcuts, via System Settings > Keyboard > Shortcuts.
Where do I find the file with these settings so that I can copy the file onto a flash drive for backup and then use it to replace the keyboard shortcuts on other Gnome systems?
gnome keyboard-shortcuts gnome3 gnome-shell dconf
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50
add a comment |
On my Debian system I've customized my Gnome (Shell) keyboard shortcuts, via System Settings > Keyboard > Shortcuts.
Where do I find the file with these settings so that I can copy the file onto a flash drive for backup and then use it to replace the keyboard shortcuts on other Gnome systems?
gnome keyboard-shortcuts gnome3 gnome-shell dconf
On my Debian system I've customized my Gnome (Shell) keyboard shortcuts, via System Settings > Keyboard > Shortcuts.
Where do I find the file with these settings so that I can copy the file onto a flash drive for backup and then use it to replace the keyboard shortcuts on other Gnome systems?
gnome keyboard-shortcuts gnome3 gnome-shell dconf
gnome keyboard-shortcuts gnome3 gnome-shell dconf
edited Dec 26 '18 at 16:31
don_crissti
49.9k15132161
49.9k15132161
asked Mar 13 '14 at 1:37
chsm
22027
22027
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50
add a comment |
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50
add a comment |
1 Answer
1
active
oldest
votes
Gnome 3 uses DCONF
to store the preferences in a single binary file: ~/.config/dconf/user
.
As per the Gnome docs, it is recommended to save only the settings that you need and restore them with either dconf
or gsettings
. However, gsettings
is only able to restore the value(s) for one single key at a time (plus, the value must be quoted) and that makes it a bit awkward for this kind of task. Which leaves us with dconf
.
So, in this particular case, save the current settings for gnome-shell
keyboard shortcuts1:
dconf dump /org/gnome/shell/keybindings/ > bkp
Here's a bkp
sample:
[/]
toggle-message-tray=['<Super>m']
open-application-menu=['<Super>F1']
toggle-application-view=['<Control>F1']
focus-active-notification=['<Super>n']
toggle-recording=['<Control><Shift><Alt>r']
Load the settings on another system:
dconf load /org/gnome/shell/keybindings/ < bkp
1: WM and Media Keys shortcuts belong to different schemas:
/org/gnome/desktop/wm/keybindings/
/org/gnome/mutter/keybindings/
/org/gnome/mutter/wayland/keybindings/
/org/gnome/settings-daemon/plugins/media-keys/
Note that dconf
only dumps non-default values so if you run e.g.
dconf dump /org/gnome/desktop/wm/keybindings/
and don't get any output that means there's no custom WM shortcut defined.
As a side note, dconf-editor
is a tool that helps visualizing dconf
settings structure, i.e. schema [:path] key value
, the type and the default values of any key etc.
For the record, saving the preferences with gsettings
:
gsettings list-recursively org.gnome.shell.keybindings > bkp
bkp
sample:
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
org.gnome.shell.keybindings open-application-menu ['<Super>F1']
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
org.gnome.shell.keybindings toggle-message-tray ['<Super>m']
org.gnome.shell.keybindings toggle-recording ['<Control><Shift><Alt>r']
Now loading the preferences (as I said, for each line in the backup file you need a separate command and don't forget to quote the values):
gsettings set org.gnome.shell.keybindings focus-active-notification "['<Super>n']"
gsettings set org.gnome.shell.keybindings open-application-menu "['<Super>F1']"
gsettings set org.gnome.shell.keybindings toggle-application-view "['<Super>a']"
gsettings set org.gnome.shell.keybindings toggle-message-tray "['<Super>m']"
gsettings set org.gnome.shell.keybindings toggle-recording "['<Control><Shift><Alt>r']"
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.
– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing adconf dump /
can help show what keys are available though. On Centos I had the terminal bound toCtrl+Alt+T
and it shows up inorg/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumpingorg/gnome
seems like a good way to backup most things on Centos 7.
– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in/org/gnome/settings-daemon/plugins/media-keys/
undercustom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).
– decibyte
Jun 8 '18 at 8:16
No/org/gnome/shell/keybindings/
on Fedora 28.
– anatoly techtonik
Dec 25 '18 at 6:08
@don_crisstidconf
only saves settings that are modified, and it saves them at different locations.
– anatoly techtonik
Dec 26 '18 at 3:29
|
show 3 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f119432%2fsave-custom-keyboard-shortcuts-in-gnome%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
Gnome 3 uses DCONF
to store the preferences in a single binary file: ~/.config/dconf/user
.
As per the Gnome docs, it is recommended to save only the settings that you need and restore them with either dconf
or gsettings
. However, gsettings
is only able to restore the value(s) for one single key at a time (plus, the value must be quoted) and that makes it a bit awkward for this kind of task. Which leaves us with dconf
.
So, in this particular case, save the current settings for gnome-shell
keyboard shortcuts1:
dconf dump /org/gnome/shell/keybindings/ > bkp
Here's a bkp
sample:
[/]
toggle-message-tray=['<Super>m']
open-application-menu=['<Super>F1']
toggle-application-view=['<Control>F1']
focus-active-notification=['<Super>n']
toggle-recording=['<Control><Shift><Alt>r']
Load the settings on another system:
dconf load /org/gnome/shell/keybindings/ < bkp
1: WM and Media Keys shortcuts belong to different schemas:
/org/gnome/desktop/wm/keybindings/
/org/gnome/mutter/keybindings/
/org/gnome/mutter/wayland/keybindings/
/org/gnome/settings-daemon/plugins/media-keys/
Note that dconf
only dumps non-default values so if you run e.g.
dconf dump /org/gnome/desktop/wm/keybindings/
and don't get any output that means there's no custom WM shortcut defined.
As a side note, dconf-editor
is a tool that helps visualizing dconf
settings structure, i.e. schema [:path] key value
, the type and the default values of any key etc.
For the record, saving the preferences with gsettings
:
gsettings list-recursively org.gnome.shell.keybindings > bkp
bkp
sample:
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
org.gnome.shell.keybindings open-application-menu ['<Super>F1']
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
org.gnome.shell.keybindings toggle-message-tray ['<Super>m']
org.gnome.shell.keybindings toggle-recording ['<Control><Shift><Alt>r']
Now loading the preferences (as I said, for each line in the backup file you need a separate command and don't forget to quote the values):
gsettings set org.gnome.shell.keybindings focus-active-notification "['<Super>n']"
gsettings set org.gnome.shell.keybindings open-application-menu "['<Super>F1']"
gsettings set org.gnome.shell.keybindings toggle-application-view "['<Super>a']"
gsettings set org.gnome.shell.keybindings toggle-message-tray "['<Super>m']"
gsettings set org.gnome.shell.keybindings toggle-recording "['<Control><Shift><Alt>r']"
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.
– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing adconf dump /
can help show what keys are available though. On Centos I had the terminal bound toCtrl+Alt+T
and it shows up inorg/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumpingorg/gnome
seems like a good way to backup most things on Centos 7.
– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in/org/gnome/settings-daemon/plugins/media-keys/
undercustom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).
– decibyte
Jun 8 '18 at 8:16
No/org/gnome/shell/keybindings/
on Fedora 28.
– anatoly techtonik
Dec 25 '18 at 6:08
@don_crisstidconf
only saves settings that are modified, and it saves them at different locations.
– anatoly techtonik
Dec 26 '18 at 3:29
|
show 3 more comments
Gnome 3 uses DCONF
to store the preferences in a single binary file: ~/.config/dconf/user
.
As per the Gnome docs, it is recommended to save only the settings that you need and restore them with either dconf
or gsettings
. However, gsettings
is only able to restore the value(s) for one single key at a time (plus, the value must be quoted) and that makes it a bit awkward for this kind of task. Which leaves us with dconf
.
So, in this particular case, save the current settings for gnome-shell
keyboard shortcuts1:
dconf dump /org/gnome/shell/keybindings/ > bkp
Here's a bkp
sample:
[/]
toggle-message-tray=['<Super>m']
open-application-menu=['<Super>F1']
toggle-application-view=['<Control>F1']
focus-active-notification=['<Super>n']
toggle-recording=['<Control><Shift><Alt>r']
Load the settings on another system:
dconf load /org/gnome/shell/keybindings/ < bkp
1: WM and Media Keys shortcuts belong to different schemas:
/org/gnome/desktop/wm/keybindings/
/org/gnome/mutter/keybindings/
/org/gnome/mutter/wayland/keybindings/
/org/gnome/settings-daemon/plugins/media-keys/
Note that dconf
only dumps non-default values so if you run e.g.
dconf dump /org/gnome/desktop/wm/keybindings/
and don't get any output that means there's no custom WM shortcut defined.
As a side note, dconf-editor
is a tool that helps visualizing dconf
settings structure, i.e. schema [:path] key value
, the type and the default values of any key etc.
For the record, saving the preferences with gsettings
:
gsettings list-recursively org.gnome.shell.keybindings > bkp
bkp
sample:
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
org.gnome.shell.keybindings open-application-menu ['<Super>F1']
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
org.gnome.shell.keybindings toggle-message-tray ['<Super>m']
org.gnome.shell.keybindings toggle-recording ['<Control><Shift><Alt>r']
Now loading the preferences (as I said, for each line in the backup file you need a separate command and don't forget to quote the values):
gsettings set org.gnome.shell.keybindings focus-active-notification "['<Super>n']"
gsettings set org.gnome.shell.keybindings open-application-menu "['<Super>F1']"
gsettings set org.gnome.shell.keybindings toggle-application-view "['<Super>a']"
gsettings set org.gnome.shell.keybindings toggle-message-tray "['<Super>m']"
gsettings set org.gnome.shell.keybindings toggle-recording "['<Control><Shift><Alt>r']"
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.
– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing adconf dump /
can help show what keys are available though. On Centos I had the terminal bound toCtrl+Alt+T
and it shows up inorg/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumpingorg/gnome
seems like a good way to backup most things on Centos 7.
– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in/org/gnome/settings-daemon/plugins/media-keys/
undercustom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).
– decibyte
Jun 8 '18 at 8:16
No/org/gnome/shell/keybindings/
on Fedora 28.
– anatoly techtonik
Dec 25 '18 at 6:08
@don_crisstidconf
only saves settings that are modified, and it saves them at different locations.
– anatoly techtonik
Dec 26 '18 at 3:29
|
show 3 more comments
Gnome 3 uses DCONF
to store the preferences in a single binary file: ~/.config/dconf/user
.
As per the Gnome docs, it is recommended to save only the settings that you need and restore them with either dconf
or gsettings
. However, gsettings
is only able to restore the value(s) for one single key at a time (plus, the value must be quoted) and that makes it a bit awkward for this kind of task. Which leaves us with dconf
.
So, in this particular case, save the current settings for gnome-shell
keyboard shortcuts1:
dconf dump /org/gnome/shell/keybindings/ > bkp
Here's a bkp
sample:
[/]
toggle-message-tray=['<Super>m']
open-application-menu=['<Super>F1']
toggle-application-view=['<Control>F1']
focus-active-notification=['<Super>n']
toggle-recording=['<Control><Shift><Alt>r']
Load the settings on another system:
dconf load /org/gnome/shell/keybindings/ < bkp
1: WM and Media Keys shortcuts belong to different schemas:
/org/gnome/desktop/wm/keybindings/
/org/gnome/mutter/keybindings/
/org/gnome/mutter/wayland/keybindings/
/org/gnome/settings-daemon/plugins/media-keys/
Note that dconf
only dumps non-default values so if you run e.g.
dconf dump /org/gnome/desktop/wm/keybindings/
and don't get any output that means there's no custom WM shortcut defined.
As a side note, dconf-editor
is a tool that helps visualizing dconf
settings structure, i.e. schema [:path] key value
, the type and the default values of any key etc.
For the record, saving the preferences with gsettings
:
gsettings list-recursively org.gnome.shell.keybindings > bkp
bkp
sample:
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
org.gnome.shell.keybindings open-application-menu ['<Super>F1']
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
org.gnome.shell.keybindings toggle-message-tray ['<Super>m']
org.gnome.shell.keybindings toggle-recording ['<Control><Shift><Alt>r']
Now loading the preferences (as I said, for each line in the backup file you need a separate command and don't forget to quote the values):
gsettings set org.gnome.shell.keybindings focus-active-notification "['<Super>n']"
gsettings set org.gnome.shell.keybindings open-application-menu "['<Super>F1']"
gsettings set org.gnome.shell.keybindings toggle-application-view "['<Super>a']"
gsettings set org.gnome.shell.keybindings toggle-message-tray "['<Super>m']"
gsettings set org.gnome.shell.keybindings toggle-recording "['<Control><Shift><Alt>r']"
Gnome 3 uses DCONF
to store the preferences in a single binary file: ~/.config/dconf/user
.
As per the Gnome docs, it is recommended to save only the settings that you need and restore them with either dconf
or gsettings
. However, gsettings
is only able to restore the value(s) for one single key at a time (plus, the value must be quoted) and that makes it a bit awkward for this kind of task. Which leaves us with dconf
.
So, in this particular case, save the current settings for gnome-shell
keyboard shortcuts1:
dconf dump /org/gnome/shell/keybindings/ > bkp
Here's a bkp
sample:
[/]
toggle-message-tray=['<Super>m']
open-application-menu=['<Super>F1']
toggle-application-view=['<Control>F1']
focus-active-notification=['<Super>n']
toggle-recording=['<Control><Shift><Alt>r']
Load the settings on another system:
dconf load /org/gnome/shell/keybindings/ < bkp
1: WM and Media Keys shortcuts belong to different schemas:
/org/gnome/desktop/wm/keybindings/
/org/gnome/mutter/keybindings/
/org/gnome/mutter/wayland/keybindings/
/org/gnome/settings-daemon/plugins/media-keys/
Note that dconf
only dumps non-default values so if you run e.g.
dconf dump /org/gnome/desktop/wm/keybindings/
and don't get any output that means there's no custom WM shortcut defined.
As a side note, dconf-editor
is a tool that helps visualizing dconf
settings structure, i.e. schema [:path] key value
, the type and the default values of any key etc.
For the record, saving the preferences with gsettings
:
gsettings list-recursively org.gnome.shell.keybindings > bkp
bkp
sample:
org.gnome.shell.keybindings focus-active-notification ['<Super>n']
org.gnome.shell.keybindings open-application-menu ['<Super>F1']
org.gnome.shell.keybindings toggle-application-view ['<Super>a']
org.gnome.shell.keybindings toggle-message-tray ['<Super>m']
org.gnome.shell.keybindings toggle-recording ['<Control><Shift><Alt>r']
Now loading the preferences (as I said, for each line in the backup file you need a separate command and don't forget to quote the values):
gsettings set org.gnome.shell.keybindings focus-active-notification "['<Super>n']"
gsettings set org.gnome.shell.keybindings open-application-menu "['<Super>F1']"
gsettings set org.gnome.shell.keybindings toggle-application-view "['<Super>a']"
gsettings set org.gnome.shell.keybindings toggle-message-tray "['<Super>m']"
gsettings set org.gnome.shell.keybindings toggle-recording "['<Control><Shift><Alt>r']"
edited Dec 26 '18 at 16:08
answered Jun 3 '14 at 0:36
don_crissti
49.9k15132161
49.9k15132161
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.
– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing adconf dump /
can help show what keys are available though. On Centos I had the terminal bound toCtrl+Alt+T
and it shows up inorg/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumpingorg/gnome
seems like a good way to backup most things on Centos 7.
– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in/org/gnome/settings-daemon/plugins/media-keys/
undercustom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).
– decibyte
Jun 8 '18 at 8:16
No/org/gnome/shell/keybindings/
on Fedora 28.
– anatoly techtonik
Dec 25 '18 at 6:08
@don_crisstidconf
only saves settings that are modified, and it saves them at different locations.
– anatoly techtonik
Dec 26 '18 at 3:29
|
show 3 more comments
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.
– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing adconf dump /
can help show what keys are available though. On Centos I had the terminal bound toCtrl+Alt+T
and it shows up inorg/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumpingorg/gnome
seems like a good way to backup most things on Centos 7.
– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in/org/gnome/settings-daemon/plugins/media-keys/
undercustom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).
– decibyte
Jun 8 '18 at 8:16
No/org/gnome/shell/keybindings/
on Fedora 28.
– anatoly techtonik
Dec 25 '18 at 6:08
@don_crisstidconf
only saves settings that are modified, and it saves them at different locations.
– anatoly techtonik
Dec 26 '18 at 3:29
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.– Lucas
Feb 15 '17 at 20:36
dconf dump /org/gnome/shell/keybindings/ > bkp
does not work on Centos 7.– Lucas
Feb 15 '17 at 20:36
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing a
dconf dump /
can help show what keys are available though. On Centos I had the terminal bound to Ctrl+Alt+T
and it shows up in org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumping org/gnome
seems like a good way to backup most things on Centos 7.– Lucas
Feb 15 '17 at 20:52
Sorry, I was trying to edit my comment and got blocked by stack exchange. Doing a
dconf dump /
can help show what keys are available though. On Centos I had the terminal bound to Ctrl+Alt+T
and it shows up in org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0
. Dumping org/gnome
seems like a good way to backup most things on Centos 7.– Lucas
Feb 15 '17 at 20:52
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in
/org/gnome/settings-daemon/plugins/media-keys/
under custom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).– decibyte
Jun 8 '18 at 8:16
For anyone using custom keyboard shortcuts for non-defaults actions: These are stored in
/org/gnome/settings-daemon/plugins/media-keys/
under custom-keybindings
(as an example: I've defined some shortcuts to place the mouse pointer at the center of each of my screens).– decibyte
Jun 8 '18 at 8:16
No
/org/gnome/shell/keybindings/
on Fedora 28.– anatoly techtonik
Dec 25 '18 at 6:08
No
/org/gnome/shell/keybindings/
on Fedora 28.– anatoly techtonik
Dec 25 '18 at 6:08
@don_crissti
dconf
only saves settings that are modified, and it saves them at different locations.– anatoly techtonik
Dec 26 '18 at 3:29
@don_crissti
dconf
only saves settings that are modified, and it saves them at different locations.– anatoly techtonik
Dec 26 '18 at 3:29
|
show 3 more comments
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f119432%2fsave-custom-keyboard-shortcuts-in-gnome%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
askubuntu.com/questions/26056/…
– Ciro Santilli 新疆改造中心 六四事件 法轮功
Mar 15 '16 at 10:14
Related: How to set custom keyboard shortcuts from terminal?
– AlikElzin-kilaka
Mar 20 '18 at 10:50