This commit is contained in:
2026-03-08 17:14:04 +00:00
parent e63ec85def
commit 202a0be14b

View File

@@ -0,0 +1,9 @@
#!/bin/bash
if station-cmd-present voxtype; then
voxtype status --follow --extended --format json | while read -r line; do
echo "$line" | jq -c '. + {alt: .class}'
done
else
echo '{"alt": "", "tooltip": ""}'
fi