upload after that funky crash

This commit is contained in:
xenomxrph
2026-05-14 21:16:36 +02:00
parent d4754a98dd
commit 9bc93b1f58
54 changed files with 7522 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
# Get the current Wi-Fi SSID
wifi_name=$(networksetup -listpreferredwirelessnetworks en0 | sed -n '2 p' | tr -d '\t')
# If the Wi-Fi name is empty, set a default value (e.g., "No Wi-Fi")
if [ -z "$wifi_name" ]; then
wifi_name="Offline"
fi
# Set the Wi-Fi name as the label in SketchyBar
sketchybar --set "$NAME" label="$wifi_name"