up su Gitea

This commit is contained in:
2026-04-19 17:07:18 +02:00
parent e78ce720bb
commit fe54b28378
298 changed files with 23460 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
ICON_CONN="󰒄"
ICON_DISCONN="󰲛"
a=$(nmcli connection show --active | grep "casa")
if [ $(nmcli connection show --active | grep "casa") ]; then
TEXT="$ICON_CONN"
else
TEXT="$ICON_DISCONN"
fi
printf '{"text":"%s"}\n' "$TEXT"