
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
github.com/crimix/go-toast
cross-platform library for sending desktop notifications
go get github.com/electricbubble/go-toast
Common invocation
package main
import (
"github.com/electricbubble/go-toast"
)
func main() {
// _ = toast.Push("test message")
_ = toast.Push("test message", toast.WithTitle("app title"))
}
macOS
package main
import (
"github.com/electricbubble/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test message",
toast.WithTitle("app title"),
toast.WithSubtitle("app sub title"),
toast.WithAudio(toast.Ping),
// toast.WithObjectiveC(true),
)
}
Windows
package main
import (
"github.com/electricbubble/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test message",
toast.WithTitle("app title"),
toast.WithAppID("app id"),
toast.WithAudio(toast.Default),
toast.WithLongDuration(),
toast.WithIcon("/path/icon.png"),
)
// bs, err := os.ReadFile("/path/icon.png")
// if err != nil {
// log.Fatalln(err)
// }
// toast.WithIconRaw(bs)
}
js && wasm
package main
import (
"fmt"
"github.com/electricbubble/go-toast"
)
func main() {
// _ = toast.Push("test message")
// _ = toast.Push("test message", toast.WithTitle("app title"))
_ = toast.Push("test_message",
toast.WithTitle("GO-WASM-APP"),
toast.WithOnClick(func(event interface{}) {
fmt.Println("click")
}),
toast.WithOnClose(func() {
fmt.Println("close")
}),
toast.WithOnShow(func() {
fmt.Println("show")
}),
)
}
Thank you JetBrains for providing free open source licenses
Repository | Description |
---|---|
go-toast/toast | A go package for Windows 10 toast notifications |
fyne-io/fyne | Cross platform GUI in Go inspired by Material Design |
gen2brain/beeep | Go cross-platform library for sending desktop notifications, alerts and beeps |
julienXX/terminal-notifier | Send User Notifications on macOS from the command-line. |
variadico/noti | Monitor a process and trigger a notification. |
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.