user/eww-wayland: rename to eww

This commit is contained in:
LavaDesu 2025-03-23 00:32:41 +11:00
parent 438eb54cea
commit da47e42111
Signed by: cilly
GPG key ID: 6500251E087653C9
7 changed files with 1 additions and 1 deletions

19
res/eww/scripts/network.sh Executable file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env bash
init=$(nmcli -t -f name,device connection show --active | grep wlp1s0 | cut -d\: -f1)
if [[ -z $init ]]; then
echo Disconnected
else
echo $init
fi
nmcli monitor | while read -r line ; do
if [[ $line == *"is now the primary connection" ]]; then
conn=$(echo $line | cut -d\' -f2)
echo $conn
fi
if [[ $line == "There's no primary connection" ]]; then
echo Disconnected
fi
done