nixos/gunther/eww/config/widgets/resources/network.sh
2024-07-29 18:04:23 +02:00

9 lines
122 B
Bash
Executable file

#!/usr/bin/env bash
status=$(nmcli g | grep -oE "disconnected")
if [ $status ] ; then
echo "✘"
else
echo ""
fi