matryer / xbar-plugins

Plugin repository for xbar (the BitBar reboot)
https://xbarapp.com
2.44k stars 1.04k forks source link

Xbar result and terminal output differs #2037

Open fuyarchuk-kg opened 2 months ago

fuyarchuk-kg commented 2 months ago

I have a small script

#!/bin/bash

if echo "$(wget --spider -t 1 -T 1 https://www.google.com 2>&1)" | grep -q "OK"; then
    echo "✦| dropdown=false"
    echo "---"
    echo "You're online"    
else
    echo "✧|color=#f23400 dropdown=false"
    echo "---"
    echo "You're offline"
fi

If a run it from terminal I get right output. But xbar output is always you're offline.