From 202a0be14bbcdd52eefeb02f0b7055bd9d1b04d0 Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 8 Mar 2026 17:14:04 +0000 Subject: [PATCH] Voxtype --- .local/bin/station-voxtype-status | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 .local/bin/station-voxtype-status diff --git a/.local/bin/station-voxtype-status b/.local/bin/station-voxtype-status new file mode 100755 index 0000000..22ccaf4 --- /dev/null +++ b/.local/bin/station-voxtype-status @@ -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