mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-22 19:33:03 +00:00
8 lines
185 B
Bash
Executable file
8 lines
185 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# The wifi_change event supplies a $INFO variable in which the current SSID
|
|
# is passed to the script.
|
|
|
|
WIFI=${INFO:-"Not Connected"}
|
|
|
|
sketchybar --set $NAME label="${WIFI}"
|