mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
17 lines
607 B
YAML
17 lines
607 B
YAML
- name: Set custom gnome binding {{ index }}
|
|
dconf:
|
|
key: "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{{ index }}/binding"
|
|
value: "{{ item.bind }}"
|
|
state: present
|
|
|
|
- name: Set custom gnome command {{ index }}
|
|
dconf:
|
|
key: "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{{ index }}/command"
|
|
value: "{{ item.command }}"
|
|
state: present
|
|
|
|
- name: Set custom gnome name {{ index }}
|
|
dconf:
|
|
key: "/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom{{ index }}/name"
|
|
value: "{{ index }}"
|
|
state: present |