mirror of
git://git.acid.vegas/random.git
synced 2024-11-14 12:06:38 +00:00
12 lines
436 B
Bash
12 lines
436 B
Bash
#!/bin/sh
|
|
pacman -S bluez bluez-utils
|
|
systemctl enable bluetooth && sudo systemctl start bluetooth
|
|
sed -i 's/#AutoEnable=false/AutoEnable=true/' /etc/bluetooth/main.conf
|
|
bluetoothctl power on # possible bluetoothctl -- <cmd>
|
|
bluetoothctl agent KeyboardOnly
|
|
bluetoothctl pairable on
|
|
bluetoothctl scan on
|
|
bluetoothctl pair CC:C5:0A:20:91:5B
|
|
bluetoothctl trust CC:C5:0A:20:91:5B
|
|
bluetoothctl connect CC:C5:0A:20:91:5B
|
|
bluetoothctl scan off |