Where is my customized shortcut stored? #1243
-
Hello, everyone, I was hit by a question today and I didn't find the answer myself: If I were to move to a new machine, is there a way to sync my customized shortcuts from the previous machine? I checked file in ~/.config/pop-shell, but the .json file in it didn't store such information. So I would like to ask, where are these configs stored in pop os, and how should I handle with it? Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
They're stored in gsettings. You can run I'm not aware of an easy way to "copy" the settings as files since they're part of a database, but creating a script to set them to what you want would be an easier alternative. |
Beta Was this translation helpful? Give feedback.
They're stored in gsettings. You can run
gsettings list-keys org.gnome.shell.extensions.pop-shell
to get a list of keys, thengsettings get org.gnome.shell.extensions.pop-shell key-name
to get a setting andgsettings set org.gnome.shell.extensions.pop-shell key-name new-value
to set a setting. There's also a GUI program calleddconf-editor
you can use to browse these keys graphically.I'm not aware of an easy way to "copy" the settings as files since they're part of a database, but creating a script to set them to what you want would be an easier alternative.