Files
Nomarchy/bin/nomarchy-voxtype-status
Bernardo Magri 33deeb494b initial commit
2026-04-01 17:06:01 +01:00

10 lines
223 B
Bash
Executable File

#!/bin/bash
if nomarchy-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