Allows to me to setup bindings for disconnecting or connecting a bluetooth device.
8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
choice=$(bluetoothctl devices | sed 's/Device \([A-Z0-9:]*\) \(.*\)/\2\t\1/g' | dmenu -i -p "Device: " | sed 's/.*\t//')
|
|
if [ ! -z $choice ]
|
|
then
|
|
bluetoothctl $1 $choice
|
|
fi
|