From 78e05345e74816fbaff17fc7b051442a2fac9849 Mon Sep 17 00:00:00 2001 From: James Blair Date: Sun, 15 Oct 2023 21:29:50 +1300 Subject: [PATCH] Removed redundant manual bluetooth section. --- setup.org | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/setup.org b/setup.org index 5d1498d..2ffd3fb 100644 --- a/setup.org +++ b/setup.org @@ -363,31 +363,3 @@ rustc -V && cargo -V #+end_src -** Optional - Bluetooth manual pairing - -Using linux across all my devices has been pretty smooth however I have one annoyance with bluetooth on my HP Envy x360 ultrabook (model 13-ag0015AU). On that device I can't pair my Logitech k380 keyboard with the user interface, via either ~blueberry~ or ~blueman~. - -To work around this I found some excellent documentation on the Arch Linux wiki for [[https://wiki.archlinux.org/title/Bluetooth#Pairing][manually pairing]] with ~bluetoothctl~. - -The steps I follow to manually pair are: - -#+NAME: Manually pair keyboard -#+begin_src tmate -# Enter bluetoothctl interactive prompt -bluetoothctl - -# Ensure laptop can pair -pairable on - -# Scan for devices -scan on - -# Pair with the keyboard -pair 34:88:5D:D6:A6:2B - -# Trust the keyboard -trust 34:88:5D:D6:A6:2B - -# Connect to the keyboard -connect 34:88:5D:D6:A6:2B -#+end_src