mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 16:52:12 +02:00
17 lines
362 B
YAML
17 lines
362 B
YAML
---
|
|
- 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
|