Add X11 daemon with tray status
This commit is contained in:
parent
3506770d09
commit
a7f50fed75
19 changed files with 1202 additions and 4 deletions
24
internal/ui/icons.go
Normal file
24
internal/ui/icons.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue