bluetooth selector

This commit is contained in:
Debucquoy 2023-09-20 13:36:55 +02:00
parent 6d413b7c8d
commit ff840b7dde
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

12
bin/btSelector Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/sh
scan_first=$(echo -e "yes\nno" | dmenu -l 2)
if [[ ${scan_first} = 'yes' ]]; then
bluetoothctl scan on &
sleep 10 && kill $!
fi
device=$(bluetoothctl devices | dmenu -l 15 | cut -d ' ' -f 2)
bluetoothctl connect ${device}