Add bt-menu

This commit is contained in:
Przemek Grondek 2021-09-27 22:09:33 +02:00
parent f1b059be5c
commit 5ea2f82e06

63
bin/bt-menu Executable file
View File

@ -0,0 +1,63 @@
#!/usr/bin/env bash
set -e
DMENU='dmenu'
declare -A DEVICES
bt_choice=""
function get-bt-devices() {
DEVICES=()
IFS="\n"
for device in $(bluetoothctl devices); do
IFS=' '
read -r ignore address name <<<"$(echo $device)"
echo "$name - $address"
DEVICES+=(["$name"]="$address")
done
}
function bt-device-choice() {
get-bt-devices
device_list=""
for device in "${!DEVICES[@]}"; do
device_list+="$device\n";
done
device_list="${device_list%}"
bt_choice=$(echo -e "$device_list" | "$DMENU" -p "[bt] Choose device" | cut -f 1)
}
function bt-connect() {
bt-device-choice
bluetoothctl connect "${DEVICES[$bt_choice]}"
}
function bt-disconnect() {
bt-device-choice
bluetoothctl disconnect "${DEVICES[bt_choice]}"
}
function bt-reconnect() {
bt-device-choice
bluetoothctl disconnect "${DEVICES[bt_choice]}"
bluetoothctl connect "${DEVICES[$bt_choice]}"
}
function bt-disable() {
rfkill block bluetooth
}
function bt-enable() {
rfkill unblock bluetooth
}
choice=$(echo -e "connect\ndisconnect\nreconnect\ndisable\nenable" | "$DMENU" -p [bt] | cut -f 1)
case "$choice" in
connect) bt-connect ;;
disconnect) bt-disconnect ;;
reconnect) bt-reconnect ;;
disable) bt-disable ;;
enable) bt-enable ;;
esac