mirror of
https://github.com/CaptaiNiveau/FirefoxSidebar.git
synced 2024-11-22 14:52:49 +00:00
12 lines
223 B
Markdown
12 lines
223 B
Markdown
|
# Bluetooth
|
||
|
```bash
|
||
|
hcitool scan # to get the MAC address of your device
|
||
|
bluetoothctl
|
||
|
agent on
|
||
|
scan on # wait for your device's address to show up here
|
||
|
scan off
|
||
|
trust MAC_ADDRESS
|
||
|
pair MAC_ADDRRESS
|
||
|
connect MAC_ADDRESS
|
||
|
```
|