moved tasks related to amd in its own role

This commit is contained in:
aminnairi
2023-12-31 19:46:05 +01:00
parent 9c4d89ade9
commit 02cee56f9d
2 changed files with 9 additions and 28 deletions
+5
View File
@@ -1,4 +1,9 @@
---
- name: Install Xorg AMDGPU (AMD graphics driver for Xorg)
become: true
pacman:
name: xf86-video-amdgpu
state: present
- name: Install Vulkan Radeon (Vulkan for AMDGPU)
become: true
pacman:
+4 -28
View File
@@ -4,42 +4,18 @@
pacman:
name: xorg-server
state: present
- name: Install Xclip (clipboard manager for X)
- name: Install Libinput (input devices recognition)
become: true
pacman:
name: xclip
name: libinput
state: present
- name: Install Xdotool (X11 command-line utility)
- name: Install Xorg Libinput (input devices bridge)
become: true
pacman:
name: xdotool
state: present
- name: Install Xset (Xorg configuration manager)
become: true
pacman:
name: xorg-xset
state: present
- name: Install Xorg AMDGPU (AMD graphics driver for Xorg)
become: true
pacman:
name: xf86-video-amdgpu
state: present
- name: Install Xorg Backlight (brightness manager)
become: true
pacman:
name: xorg-xbacklight
name: xf86-input-libinput
state: present
- name: Install Xorg Xinput (input devices manager)
become: true
pacman:
name: xorg-xinput
state: present
- name: Install Xorg Xinit (Xorg startup script)
become: true
pacman:
name: xorg-xinit
state: present
- name: Setup Xorg Xinit
synchronize:
src: xinit/xinitrc
dest: "/$HOME/.xinitrc"