Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tbulligan/b92e85a6e89e218d711a97cfa38f855e to your computer and use it in GitHub Desktop.
Save tbulligan/b92e85a6e89e218d711a97cfa38f855e to your computer and use it in GitHub Desktop.
Connect bluetooth headphones on Pop!_OS 22.04 and potentially other distros using PipeWire
#!/usr/bin/env bash
function get_headphones_index() {
echo $(pactl list | grep bluez_card | grep Name | awk '{print $2}')
}
function get_headphones_mac_address() {
local temp=$(pactl list | grep bluez_card -A2 | grep 'device.string' | awk '{print $3}' | head -n 1)
temp="${temp%\"}"
temp="${temp#\"}"
echo "${temp}"
}
function _control_bluethoot_headphones() {
local op=${1}
local hp_mac=${2}
echo -e "${op} ${hp_mac}\n quit" | bluetoothctl
}
function disconnect_bluetooth_headphones() {
local hp_mac=${1}
_control_bluethoot_headphones "disconnect" ${hp_mac}
}
function connect_bluetooth_headphones() {
local hp_mac=${1}
_control_bluethoot_headphones "connect" ${hp_mac}
}
function _set_headphones_profile() {
local profile=${1}
pactl set-card-profile $(get_headphones_index) ${profile}
}
function set_headphones_profile_a2dp_sink() {
_set_headphones_profile "a2dp-sink"
echo "Bluethoot headphones a2dp-sink"
}
function set_headphones_profile_off() {
_set_headphones_profile "off"
echo "Bluethoot headphones profile off"
}
function main() {
local hp_mac=$(get_headphones_mac_address)
set_headphones_profile_off
disconnect_bluetooth_headphones ${hp_mac}
sleep 3s
connect_bluetooth_headphones ${hp_mac}
sleep 8s
set_headphones_profile_a2dp_sink
}
main
@tbulligan
Copy link
Author

tbulligan commented Aug 27, 2024

My Sony WH-1000XM3 stuck with the Handsfree profile when reconnecting after suspend. The high-quality Headset profile was unavailable. Running this script fixes the issue.

This is a fork of @egelev's script which I modified to make it work with PipeWire. Kudos to the original author for working out the solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment