blob: ed183a775757481c154086e1ef5ce810e53e9c95 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
---
- name: install xorg and X11 packages
ansible.builtin.package:
name:
- xf86-input-synaptics
- xorg-apps
- xorg-server
- xorg-xinit
- xorg-xwayland
- xsecurelock
state: present
when: ansible_distribution in ["Archlinux"]
- name: create Xorg configuration subdirectory
ansible.builtin.file:
path: "{{ xorg_configuration_dir }}"
owner: 0
group: 0
mode: "0644"
state: directory
- name: copy xorg configuration
ansible.builtin.copy:
src: intel.conf
dest: "{{ xorg_configuration_dir }}/"
mode: "0644"
owner: 0
group: 0
|