20 lines
323 B
Bash
Executable File
20 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# https://unix.stackexchange.com/questions/119432/save-custom-keyboard-shortcuts-in-gnome
|
|
|
|
set -o
|
|
|
|
CONF=conf/gnome-shortcuts.conf
|
|
CONF_PATH=/org/gnome/settings-daemon/plugins/media-keys/
|
|
|
|
function dump() {
|
|
dconf dump $CONF_PATH > $CONF
|
|
}
|
|
|
|
function load() {
|
|
dconf load $CONF_PATH < $CONF
|
|
}
|
|
|
|
# zvol operaci
|
|
|