about summary refs log tree commit diff stats
path: root/bluetooth-devices.sh
blob: e8a7517e58e816c7f52931998c0ff3cceabd3048 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# This program lists all paired devices which you can select from, the selected one
# will be connected
#   

# Opens dmenu prompt, which lets you decide which device you want to connect to
DEVICE=$(bluetoothctl devices | sed 's/[^ ]* //' | sed 's/[^ ]* //' | dmenu -i)

# If dmenu was cancelled, exit program
if [ $? -ne 0 ]; then
    exit 1
fi

# Get MAC adress of the device you selected
MAC=$(bluetoothctl devices | grep "$DEVICE" | sed 's/[^ ]* //' | cut -d ' ' -f1)

# If bluetooth device is already connected, disconnect
CONNECTED=$(bluetoothctl devices Connected | cut -f3 -d ' ')
if echo $CONNECTED | grep $DEVICE; then
    if bluetoothctl disconnect $MAC | grep -q 'successful' 
    then
        notify-send -t 5000 -r 2954 -u normal "  Disconnected successfully from" "     $DEVICE"
    else 
        notify-send -t 5000 -r 2954 -u normal "  Couldn't disconnect from" "     $DEVICE"
    fi 
    exit 0
fi

# Send a notify whether the connection was successful 
if bluetoothctl connect $MAC | grep -q 'successful' 
then
    notify-send -t 5000 -r 2954 -u normal "  Connected successfully to" "     $DEVICE"
else 
    notify-send -t 5000 -r 2954 -u normal "  Couldn't connect to" "     $DEVICE"
fi