added a dedicated role for all things related to pipewire

This commit is contained in:
aminnairi
2023-12-31 22:52:37 +01:00
parent 7d33309be3
commit bfcf35d069
+17
View File
@@ -0,0 +1,17 @@
---
- name: Install Pipewire Alsa
become: true
pacman:
name: pipewire-alsa
state: present
- name: Install Pipewire for Pulseaudio
become: true
pacman:
name: pipewire-pulse
state: present
- name: Enable Pipewire for Pulseaudio
systemd_service:
name: pipewire-pulse
scope: user
enabled: true
state: started