Add Panama system health diagnostics

This commit is contained in:
Gabriel Brown
2026-08-18 08:52:49 -04:00
parent 77f8102148
commit d58c431199
8 changed files with 671 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/bash
set -euo pipefail
case "${1:-}" in
--version) printf '%s\n' "${PANAMA_DOCTOR_FIXTURE_QS_VERSION:-Quickshell 0.2.0}" ;;
ipc)
if [[ "${PANAMA_DOCTOR_FIXTURE_QS:-ready}" == "malformed" ]]; then
printf 'fixture-secret-token AA:BB:CC:DD:EE:FF\n'
else
printf '%s\n' 'target notifications' 'target clipboard' 'target wallpaper' 'target capture'
fi
;;
*) exit 2 ;;
esac