diff --git a/internal/app/app.go b/internal/app/app.go index 9f8618e..221419c 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -187,5 +187,8 @@ func (a *App) OpenDirectory(id, title string) string { } func (a *App) Beep() { + if runtime.GOOS == "windows" { + return + } beeep.Beep(beeep.DefaultFreq, beeep.DefaultDuration) }