1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-31 10:19:27 +00:00

28 lines
343 B
Go
Raw Normal View History

2023-02-21 17:47:21 +01:00
package ui
import (
"context"
"runtime"
"github.com/gen2brain/beeep"
)
type UI struct {
2023-05-26 17:21:39 +02:00
ctx context.Context
2023-02-21 17:47:21 +01:00
}
func New() *UI {
2023-12-22 15:26:29 +01:00
return &UI{}
2023-02-21 17:47:21 +01:00
}
func (u *UI) Startup(ctx context.Context) {
u.ctx = ctx
}
func (u *UI) Beep() {
if runtime.GOOS == "windows" {
return
}
beeep.Beep(beeep.DefaultFreq, beeep.DefaultDuration)
}