Clean up config and STT naming
This commit is contained in:
parent
b74aaaa1c4
commit
8c68719041
9 changed files with 42 additions and 98 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue