This commit is contained in:
iFargle 2023-08-28 20:38:12 +09:00
parent 380bf528f6
commit 932a78bd72

View file

@ -15,11 +15,11 @@
if [ $CLASS == "Running" ]; then if [ $CLASS == "Running" ]; then
IP=`tailscale status --json | jq -r '.TailscaleIPs[0]'` IP=`tailscale status --json | jq -r '.TailscaleIPs[0]'`
ALT="IP: $IP" ALT="IP: $IP"
printf '{"text": %s,"class": %s", "alt": %s}\n' "$TEXT" "$CLASS" "$ALT" printf '{"text": "%s","class": "%s"", "alt": "%s"}\n' "$TEXT" "$CLASS" "$ALT"
fi fi
if [ $CLASS == "Stopped" ]; then if [ $CLASS == "Stopped" ]; then
ALT="Tailscale is not running" ALT="Tailscale is not running"
printf '{"text": %s,"class": %s", "alt": %s}\n' "$TEXT" "$CLASS" "$ALT" printf '{"text": "%s","class": "%s"", "alt": "%s"}\n' "$TEXT" "$CLASS" "$ALT"
fi fi
''; '';
}; };