Skip to content

Instantly share code, notes, and snippets.

@eSlider
Created November 11, 2022 09:35
Show Gist options
  • Save eSlider/a61dc167cf8545c8aeaaea6b595c5355 to your computer and use it in GitHub Desktop.
Save eSlider/a61dc167cf8545c8aeaaea6b595c5355 to your computer and use it in GitHub Desktop.
Restart bluetooth to get HQ sound over pipewire
#!/bin/bash
# Restart bluetooth on to get HQ devices runs over APTX on pipewire
# Supported devices: IdeaPad 5 Pro 16ACH6 with AX210
# Solutions: https://bbs.archlinux.org/viewtopic.php?id=17135
systemctl stop bluetooth
hciconfig hci0 down
rmmod btusb
modprobe btusb
hciconfig hci0 up
systemctl start bluetooth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment