Files
nixos-config/user/programs/hyprland/files/eww/scripts/wifi
Morten Olsen 33f79566b7 update
2023-09-16 12:33:21 +02:00

14 lines
263 B
Bash
Executable File

#!/bin/sh
symbol() {
[ $(cat /sys/class/net/w*/operstate) = down ] && echo&& exit
echo
}
name() {
nmcli | grep "^wlp" | sed 's/\ connected\ to\ /Connected to /g' | cut -d ':' -f2
}
[ "$1" = "icon" ] && symbol && exit
[ "$1" = "name" ] && name && exit