~kris/dots

srice

ref: e9b48d06a8541f3eda5c4db90382ab3c77183afb srice/.config/eww/scripts/connect_bluetooth.sh -rwxr-xr-x 816 bytes
e9b48d06 — Kris Yotam xprofile: systemd-aware pipewire start + blueman-applet; sb-internet: tolerate missing /proc/net/wireless 2 months ago
                                                                                
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
36
37
38
39
#!/bin/bash

MAC="$1"
ACTION="${2:-toggle}"

if [ -z "$MAC" ]; then
    exit 1
fi

case "$ACTION" in
    connect)
        bluetoothctl connect "$MAC"
        ;;
    disconnect)
        bluetoothctl disconnect "$MAC"
        ;;
    toggle)
        if bluetoothctl info "$MAC" | grep -q "Connected: yes"; then
            bluetoothctl disconnect "$MAC"
        else
            # Pair dulu jika belum paired
            if ! bluetoothctl info "$MAC" | grep -q "Paired: yes"; then
                bluetoothctl pair "$MAC"
                sleep 2
            fi
            bluetoothctl connect "$MAC"
        fi
        ;;
    pair)
        bluetoothctl pair "$MAC"
        ;;
    unpair)
        bluetoothctl remove "$MAC"
        ;;
esac

# Refresh list setelah action
sleep 1
~/.config/eww/scripts/scan_bluetooth.sh