2020-05-27 01:46:25 +00:00
|
|
|
- name: Install xorg
|
|
|
|
become: yes
|
|
|
|
pacman:
|
|
|
|
name:
|
|
|
|
- xorg
|
|
|
|
- xorg-xinit
|
|
|
|
state: present
|
2020-07-07 13:14:38 +00:00
|
|
|
|
|
|
|
- name: Configure xorg
|
|
|
|
become: yes
|
|
|
|
template:
|
|
|
|
src: 10-laptop-display.conf
|
|
|
|
dest: /etc/X11/xorg.conf.d/10-laptop-display.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: u=rw,g=r,o=r
|