aboutsummaryrefslogtreecommitdiffstats
path: root/roles/_workstation/wscons/tasks/main.yml
blob: 67296f05d2fb7aa368a287a45e7b06887d560b89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---

- name: append configuration to wsconsctl
  ansible.builtin.lineinfile:
    path: "{{ wscons_configuration_file }}"
    regexp: "^{{ item[0] }}"
    line: "{{ item[0] }}={{ item[1] }}"
    create: true
    owner: 0
    group: 0
    mode: "0644"
  loop:
    - [screen.brightness, 80]
    - [keyboard.repeat.del1, 180]
    - [keyboard.repeat.deln, 50]
    - [keyboard.bell.volume, 0]
    - [mouse.tp.tapping, 1]
remember that computers suck.