Update STT tray icon

This commit is contained in:
Thales Maciel 2026-02-24 11:38:05 -03:00
parent 3f15a0e686
commit 861f199dea
No known key found for this signature in database
GPG key ID: 33112E6833C34679
3 changed files with 1 additions and 3 deletions

View file

Before

Width:  |  Height:  |  Size: 82 B

After

Width:  |  Height:  |  Size: 82 B

Before After
Before After

View file

@ -18,8 +18,6 @@ class Config:
) )
def default_path() -> Path: def default_path() -> Path:
return Path.home() / ".config" / "lel" / "config.json" return Path.home() / ".config" / "lel" / "config.json"

View file

@ -212,7 +212,7 @@ class Daemon:
if state == State.RECORDING: if state == State.RECORDING:
return str(ASSETS_DIR / "recording.png") return str(ASSETS_DIR / "recording.png")
if state == State.STT: if state == State.STT:
return str(ASSETS_DIR / "transcribing.png") return str(ASSETS_DIR / "stt.png")
if state == State.PROCESSING: if state == State.PROCESSING:
return str(ASSETS_DIR / "processing.png") return str(ASSETS_DIR / "processing.png")
return str(ASSETS_DIR / "idle.png") return str(ASSETS_DIR / "idle.png")