You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
594 B
25 lines
594 B
- name: Make xorg.conf |
|
vars: |
|
driver: "{{ x.driver }}" |
|
template: |
|
src: xorg/xorg.conf.j2 |
|
dest: "/etc/X11/xorg.conf.clt" |
|
|
|
- name: Configure touchpad |
|
template: |
|
src: xorg/touchpad.conf.j2 |
|
dest: "/etc/X11/xorg.conf.d/touchpad.conf.clt" |
|
|
|
- name: Configure keyboard layouts |
|
template: |
|
src: xorg/xkb/{{ item }}.j2 |
|
dest: "{{ x.xkb.directory }}/{{ item }}" |
|
loop: "{{ x.xkb.layouts }}" |
|
|
|
- name: Disable kernel modules |
|
vars: |
|
modules: "{{ x.modules.blacklist }}" |
|
template: |
|
src: modprobe.d/xorg-blacklist.conf.j2 |
|
dest: /etc/modprobe.d/xorg-blacklist.conf |
|
|
|
|