The officially official Devuan Forum!

You are not logged in.

#1 2025-08-07 22:56:20

recklessswing
Member
From: Türkiye
Registered: 2020-12-18
Posts: 135  

Devuan 6.0 documentation of how to enable pipewire even in KDE Wayland

This is how I do it, with KDE wayland it works. By the way, on Devuan 6 gnome is totally borked. Doesn't work at all.

mkdir -p ~/.config/autostart
nano ~/.config/autostart/pipewire.desktop

add this to the file:

[Desktop Entry]
Type=Application
Name=PipeWire
Exec=sh -c 'pipewire & pipewire-pulse & wireplumber &'
X-GNOME-Autostart-enabled=true

Then:

chmod +x ~/.config/autostart/pipewire.desktop

Last edited by recklessswing (2025-08-07 22:56:40)

Offline

#2 2025-10-02 23:18:05

dgiglio
Member
Registered: 2024-02-17
Posts: 4  

Re: Devuan 6.0 documentation of how to enable pipewire even in KDE Wayland

I run this script:

#!/usr/bin/env bash

# kill any existing pipewire instance to restore sound
pkill -u "$USER" -fx /usr/bin/pipewire-pulse 1>/dev/null 2>&1
pkill -u "$USER" -fx /usr/bin/wireplumber 1>/dev/null 2>&1
pkill -u "$USER" -fx /usr/bin/pipewire 1>/dev/null 2>&1

exec /usr/bin/pipewire &

# wait for pipewire to start before attempting to start related daemons
while [ "$(pgrep -f /usr/bin/pipewire)" = "" ] ; do
   sleep 1
done

exec /usr/bin/wireplumber &

# wait for wireplumber to start before attempting to start pipewire-pulse
while [ "$(pgrep -f /usr/bin/wireplumber)" = "" ] ; do
   sleep 1
done

exec /usr/bin/pipewire-pulse &

Offline

Board footer