8 lines
146 B
Bash
Executable file
8 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
ping -c 1 1.1.1.1 &> /dev/null
|
|
|
|
if [ "$?" = "0" ]; then
|
|
sketchybar --set $NAME icon=
|
|
else
|
|
sketchybar --set $NAME icon=
|
|
fi
|