Files
arthur-os/bin/omarchy-voxtype-status
2026-04-28 12:03:46 -04:00

14 lines
317 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Clean up the voxtype --follow child when Waybar reloads
trap 'kill 0' EXIT
if omarchy-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