We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e205c1 commit 824b409Copy full SHA for 824b409
playbook.yml
@@ -3,6 +3,7 @@
3
hosts: localhost
4
connection: local
5
roles:
6
+ - settings
7
- cli_tools
8
- docker
9
- git
roles/settings/tasks/main.yml
@@ -0,0 +1,10 @@
1
+---
2
+- name: Setup System Settings
+ become: true
+ block:
+ - name: Switch Capslock and Escape
+ ansible.builtin.lineinfile:
+ path: "/etc/default/keyboard"
+ search_string: "XKBOPTIONS"
+ line: "XKBOPTIONS=caps:swapescape"
10
+ state: "present"
0 commit comments