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