|                     |  | #!/bin/sh
# A dwm_bar function to show the current network connection/SSID, private IP, and public IP# Joe Standring <git@joestandring.com># GNU GPLv3
# Dependencies: NetworkManager, curl
dwm_network () {    CONNAME=$(nmcli -a | grep 'Wired connection' | awk 'NR==1{print $1}')    if [ "$CONNAME" = "" ]; then        CONNAME=$(nmcli -t -f active,ssid dev wifi | grep '^yes' | cut -c 5-)    fi
    PRIVATE=$(nmcli -a | grep 'inet4 192' | awk '{print $2}')    PUBLIC=$(curl -s https://ipinfo.io/ip)
    if [ "$IDENTIFIER" = "unicode" ]; then        printf "[🌐 %s %s | %s]\n" "$CONNAME" "$PRIVATE" "$PUBLIC"    else        printf "[NET %s %s | %s]\n" "$CONNAME" "$PRIVATE" "$PUBLIC"    fi}
dwm_network
 |