parent
36544f8606
commit
c16e82d977
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if tailscale status --self; then
|
||||||
|
ICON=
|
||||||
|
else
|
||||||
|
ICON=
|
||||||
|
fi
|
||||||
|
|
||||||
|
sketchybar --set "$NAME" icon="$ICON"
|
@ -1,19 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# source "$HOME/.config/colors.sh" # Loads all defined colors
|
|
||||||
|
|
||||||
IP_ADDRESS=$(scutil --nwi | grep address | sed 's/.*://' | tr -d ' ' | head -1)
|
IP_ADDRESS=$(scutil --nwi | grep address | sed 's/.*://' | tr -d ' ' | head -1)
|
||||||
|
|
||||||
if [[ $IP_ADDRESS != "" ]]; then
|
if [[ $IP_ADDRESS != "" ]]; then
|
||||||
COLOR=$BLUE
|
|
||||||
ICON=
|
ICON=
|
||||||
LABEL=
|
|
||||||
else
|
else
|
||||||
COLOR=$WHITE
|
|
||||||
ICON=
|
ICON=
|
||||||
LABEL="Not Connected"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sketchybar --set $NAME background.color=$COLOR \
|
sketchybar --set $NAME icon=$ICON
|
||||||
icon=$ICON \
|
|
||||||
label="$LABEL"
|
|
||||||
|
Loading…
Reference in new issue