Files

14 lines
317 B
Bash
Executable File

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