Finally configure gnome custom keybindings

This commit is contained in:
Kenneth Benzie 2024-07-06 23:04:04 +01:00
parent 30e2a123c0
commit 1965529cb6

View File

@ -38,18 +38,28 @@
# NOTE: Use this command to inspect the current state of the custom keybindings # NOTE: Use this command to inspect the current state of the custom keybindings
# dconf dump / | sed -n '/\[org.gnome.settings-daemon.plugins.media-keys/,/^$/p' # dconf dump / | sed -n '/\[org.gnome.settings-daemon.plugins.media-keys/,/^$/p'
# TODO: List of custom-keybindings - name: 1password quick access custom keybinding
# [org/gnome/settings-daemon/plugins/media-keys] dconf:
# custom-keybindings=['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/'] state: present
key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/{{item.key}}'
value: '{{item.value}}'
with_items:
- {key: 'binding', value: "'<Shift><Alt>space'"}
- {key: 'command', value: "'1password --quick-access'"}
- {key: 'name', value: "'1Password Quick Access'"}
# TODO: 1Password Quick Access - name: ulauncher toggle custom keybinding
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0] dconf:
# binding='<Shift><Alt>space' state: present
# command='1password --quick-access' key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/{{item.key}}'
# name='1Password Quick Access' value: '{{item.value}}'
# with_items:
# TODO: Ulauncher Toggle - {key: 'binding', value: "'<Alt>space'"}
# [org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1] - {key: 'command', value: "'ulauncher-toggle'"}
# binding='<Alt>space' - {key: 'name', value: "'Ulauncher Toggle'"}
# command='ulauncher-toggle'
# name='Ulauncher Toggle' - name: list of entries defining custom-keybindings
dconf:
state: present
key: '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings'
value: "['/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/', '/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/']"