mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 12:12:13 +02:00
22 lines
465 B
YAML
22 lines
465 B
YAML
---
|
|
- name: Install Xorg (X11 server)
|
|
become: true
|
|
pacman:
|
|
name: xorg-server
|
|
state: present
|
|
- name: Install Libinput (input devices recognition)
|
|
become: true
|
|
pacman:
|
|
name: libinput
|
|
state: present
|
|
- name: Install Xorg Libinput (input devices bridge)
|
|
become: true
|
|
pacman:
|
|
name: xf86-input-libinput
|
|
state: present
|
|
- name: Install Xorg Xinput (input devices manager)
|
|
become: true
|
|
pacman:
|
|
name: xorg-xinput
|
|
state: present
|