infobar

Unixy status monitor
git clone git://wolog.xyz/infobar
Log | Files | Refs | README | LICENSE

commit 288ea3a0e3f65c363f46a38c7f7d0a36789235bb
parent a2b681dc720b76816cc1261385e40e1ca1e1b9f6
Author: Raymond Cole <rc@wolog.xyz>
Date:   Wed, 30 Oct 2024 12:46:52 +0000

Fix string comparison

Diffstat:
Minfobar | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/infobar b/infobar @@ -361,7 +361,7 @@ fifolog - "$tmpdir"/fifo/* | while read -r src tok toks; do updatevol && putbar ;; !) - [ "$tok" == t ] || exit 1 + [ "$tok" = t ] || exit 1 ;; esac done