28 lines
382 B
Bash
Executable file
28 lines
382 B
Bash
Executable file
#!/bin/sh
|
|
|
|
RECENT=$(fish -c "history | grep -v 'grep' | grep 'bluetoothctl connect' | awk '{print \$3;}'")
|
|
|
|
OPTION=$(echo "$RECENT" | cat <<EOF | dmenu)
|
|
On
|
|
Off
|
|
Disconnect
|
|
$RECENT
|
|
EOF
|
|
|
|
case "$OPTION" in
|
|
On)
|
|
bluetoothctl power on
|
|
;;
|
|
Off)
|
|
bluetoothctl power off
|
|
;;
|
|
Disconnect)
|
|
bluetoothctl disconnect
|
|
;;
|
|
"")
|
|
exit 1
|
|
;;
|
|
*)
|
|
bluetoothctl connect "$OPTION"
|
|
;;
|
|
esac
|