Files
dotfiles/ansible/roles/xorg/tasks/main.yml
T

22 lines
461 B
YAML

---
- name: Install Xorg (X11 server)
become: true
pacman:
name: xorg-server
state: latest
- name: Install Libinput (input devices recognition)
become: true
pacman:
name: libinput
state: latest
- name: Install Xorg Libinput (input devices bridge)
become: true
pacman:
name: xf86-input-libinput
state: latest
- name: Install Xorg Xinput (input devices manager)
become: true
pacman:
name: xorg-xinput
state: latest