mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* Enable Bluetooth A2DP auto-connect in WirePlumber * Harden Bluetooth A2DP migration
11 lines
348 B
Bash
Executable File
11 lines
348 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Restart the PipeWire audio service to fix audio issues or apply new configuration.
|
|
|
|
echo -e "Restarting PipeWire audio services...\n"
|
|
systemctl --user restart wireplumber.service pipewire.service
|
|
|
|
if systemctl --user --quiet is-active pipewire-pulse.service; then
|
|
systemctl --user restart pipewire-pulse.service
|
|
fi
|