From ef7f983f4787b1118befd1fcc6d40a378012c564 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Mon, 4 Mar 2019 17:22:09 +0000 Subject: [PATCH] Add missing keybindings.yaml file --- .../linux_desktop/tasks/includes/keybindings.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .ansible/roles/linux_desktop/tasks/includes/keybindings.yaml diff --git a/.ansible/roles/linux_desktop/tasks/includes/keybindings.yaml b/.ansible/roles/linux_desktop/tasks/includes/keybindings.yaml new file mode 100644 index 0000000..caa79a0 --- /dev/null +++ b/.ansible/roles/linux_desktop/tasks/includes/keybindings.yaml @@ -0,0 +1,13 @@ +- name: 'Gnome: Custom key bindings' + tags: + - config + - keybindings + block: + - name: "Gnome: Custom key bindings: {{ item.name }} (name)" + command: "dconf write {{ customkbpath }}/custom{{ index }}/name \"'{{ item.name }}'\"" + + - name: "Gnome: Custom key bindings: {{ item.name }} (binding)" + command: "dconf write {{ customkbpath }}/custom{{ index }}/binding \"'{{ item.binding }}'\"" + + - name: "Gnome: Custom key bindings: {{ item.name }} (command)" + command: "dconf write {{ customkbpath }}/custom{{ index }}/command \"{{ item.command }}\""