10 lines
243 B
YAML
10 lines
243 B
YAML
# Xorg configuration
|
|
|
|
- name: Configure Xorg joystick behaviour
|
|
ansible.builtin.copy:
|
|
src: xorg/joystick.conf
|
|
dest: "{{ item }}/50-joystick.conf"
|
|
become: true
|
|
when: display_server == 'x11'
|
|
loop: "{{ xorg_common_config_dirs }}"
|