Add X11 daemon with tray status

This commit is contained in:
Thales Maciel 2026-02-06 11:36:45 -03:00
parent 3506770d09
commit a7f50fed75
19 changed files with 1202 additions and 4 deletions

BIN
internal/ui/assets/idle.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

24
internal/ui/icons.go Normal file
View file

@ -0,0 +1,24 @@
package ui
import _ "embed"
//go:embed assets/idle.png
var iconIdle []byte
//go:embed assets/recording.png
var iconRecording []byte
//go:embed assets/transcribing.png
var iconTranscribing []byte
func IconIdle() []byte {
return iconIdle
}
func IconRecording() []byte {
return iconRecording
}
func IconTranscribing() []byte {
return iconTranscribing
}