2021-06-16 22:57:18 +02:00
|
|
|
# Xorg configuration
|
|
|
|
|
|
|
|
- name: Configure Xorg joystick behaviour
|
2023-11-02 19:51:54 +01:00
|
|
|
ansible.builtin.copy:
|
2021-06-16 22:57:18 +02:00
|
|
|
src: xorg/joystick.conf
|
|
|
|
dest: "{{ item }}/50-joystick.conf"
|
2023-11-02 19:51:54 +01:00
|
|
|
become: true
|
2021-06-18 21:53:42 +02:00
|
|
|
when: display_server == 'x11'
|
2021-06-16 22:57:18 +02:00
|
|
|
loop: "{{ xorg_common_config_dirs }}"
|