Created
November 11, 2022 09:35
-
-
Save eSlider/a61dc167cf8545c8aeaaea6b595c5355 to your computer and use it in GitHub Desktop.
Restart bluetooth to get HQ sound over pipewire
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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