From f803a43462a656763b99afa0761c21b95d3ea049 Mon Sep 17 00:00:00 2001 From: eoli3n Date: Fri, 26 May 2023 19:53:49 +0200 Subject: [PATCH] fix pipewire config to run wireplumber --- roles/pipewire/files/pipewire.conf | 2 +- roles/pipewire/tasks/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/pipewire/files/pipewire.conf b/roles/pipewire/files/pipewire.conf index 94be8ec..db0cd69 100644 --- a/roles/pipewire/files/pipewire.conf +++ b/roles/pipewire/files/pipewire.conf @@ -236,7 +236,7 @@ context.exec = [ # but it is better to start it as a systemd service. # Run the session manager with -h for options. # - { path = "wireplumber" args = "" } + { path = "/bin/wireplumber" args = "" } # # You can optionally start the pulseaudio-server here as well # but it is better to start it as a systemd service. diff --git a/roles/pipewire/tasks/main.yml b/roles/pipewire/tasks/main.yml index 9dc3c31..8f3be8b 100644 --- a/roles/pipewire/tasks/main.yml +++ b/roles/pipewire/tasks/main.yml @@ -3,10 +3,10 @@ file: path: ~/.config/pipewire/ state: directory - when: ansible_distribution == 'void' + when: ansible_distribution == 'Void' - name: configure pipewire copy: src: pipewire.conf dest: ~/.config/pipewire/pipewire.conf - when: ansible_distribution == 'void' + when: ansible_distribution == 'Void'