aboutsummaryrefslogtreecommitdiff
path: root/dwm-status.sh
blob: 76744822e00426248845a5fdd9df13c8470b7cc0 (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
#!/bin/sh

while true; do
    datetime="$(date '+%d %a %H:%M')"

    # Volume
    if command -v pamixer >/dev/null 2>&1; then
        vol="$(pamixer --get-volume-human 2>/dev/null)"
    elif command -v amixer >/dev/null 2>&1; then
        vol="$(amixer get Master | awk -F'[][]' 'END{print $2}')"
    else
        vol="n/a"
    fi

    # Network on/off
    if ping -c1 -W1 8.8.8.8 >/dev/null 2>&1; then
        net="online"
    else
        net="offline"
    fi

    # VPN (tun0 / wg0 / proton0 – adjust to match your system)
    if ip link show tun0 >/dev/null 2>&1 || ip link show wg0 >/dev/null 2>&1 || ip link show proton0 >/dev/null 2>&1; then
        vpn="VPN on"
    else
        vpn="VPN off"
    fi

    xsetroot -name "VOL $vol | NET $net | $vpn | $datetime    "
    sleep 5
done