Clean up config and STT naming

This commit is contained in:
Thales Maciel 2026-02-24 11:15:48 -03:00
parent b74aaaa1c4
commit 8c68719041
No known key found for this signature in database
GPG key ID: 33112E6833C34679
9 changed files with 42 additions and 98 deletions

View file

@ -28,7 +28,7 @@ class Tray:
def _icon_path(self, state: str) -> str:
if state == "recording":
return str(self.base / "recording.png")
if state == "transcribing":
if state == "stt":
return str(self.base / "transcribing.png")
if state == "processing":
return str(self.base / "processing.png")
@ -37,8 +37,8 @@ class Tray:
def _title(self, state: str) -> str:
if state == "recording":
return "Recording"
if state == "transcribing":
return "Transcribing"
if state == "stt":
return "STT"
if state == "processing":
return "AI Processing"
return "Idle"