init commit

This commit is contained in:
2026-03-31 14:40:03 +03:00
commit 41c8e186ef
37 changed files with 5420 additions and 0 deletions

17
notification_windows.go Normal file
View File

@@ -0,0 +1,17 @@
//go:build windows
package main
import "github.com/go-toast/toast"
// SendNotification shows a Windows Action Center notification.
func SendNotification(title, message string) {
n := toast.Notification{
AppID: "kettuRay",
Title: title,
Message: message,
Duration: toast.Short,
Audio: toast.Silent,
}
_ = n.Push()
}