Skip to content

Instantly share code, notes, and snippets.

@franciscocpg
Last active November 19, 2021 03:42
Show Gist options
  • Save franciscocpg/3d942403377da57da1aa1f78866224d7 to your computer and use it in GitHub Desktop.
Save franciscocpg/3d942403377da57da1aa1f78866224d7 to your computer and use it in GitHub Desktop.
Enable bluetooth headset archlinux + deepin
yay -S bluez bluez-utils pulseaudio-alsa pulseaudio-bluetooth
pulseaudio -k
pulseaudio --start
sudo systemctl restart bluetooth.service 

Then use the bluetooth manager from deepin to connect to a device.

Or via terminal

bluetoothctl power on
bluetoothctl scan on

You see something like:

[NEW] Device 00:1D:43:6D:03:26 Lasmex LBT10

Use the returned id (00:1D:43:6D:03:26 in this case) to run the commands below

Then

bluetoothctl pair 00:1D:43:6D:03:26
bluetoothctl connect 00:1D:43:6D:03:26
bluetoothctl trust 00:1D:43:6D:03:26

More info here.

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