mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
13 lines
382 B
Bash
13 lines
382 B
Bash
echo "Enable Bluetooth A2DP auto-connect in WirePlumber"
|
|
|
|
destination=~/.config/wireplumber/wireplumber.conf.d/bluetooth-a2dp-autoconnect.conf
|
|
|
|
mkdir -p ~/.config/wireplumber/wireplumber.conf.d/
|
|
|
|
if [[ ! -f "$destination" ]]; then
|
|
cp "$OMARCHY_PATH/default/wireplumber/wireplumber.conf.d/bluetooth-a2dp-autoconnect.conf" \
|
|
"$destination"
|
|
fi
|
|
|
|
omarchy-state set reboot-required
|