Commit 8ee50e7

Ansari <ping@ansari.wtf>
2026-05-27 09:57:27
feat: handy "transcribe script added"
1 parent 701eb54
Changed files (1)
.wraith
.wraith/scripts/transcribe.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env zsh
+
+STATUS=$(curl -s http://localhost:9842/status)
+
+case "$STATUS" in
+    idle) ICON="" ;;         
+    recording) ICON="๎š…" ;;    
+    processing) ICON=" " ;;   
+    transcribing) ICON="๓ฐ†„" ;; 
+    *) ICON="๏™" ;;
+esac
+
+echo "{\"text\":\"$ICON\"}"
+
+
+