Files
linux-workspace/scripts/gnome-shortcuts.sh
2020-08-13 11:06:41 +02:00

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