icon_darwin.go

 1//go:build darwin
 2
 3package notification
 4
 5import _ "embed"
 6
 7// Icon is the PNG data for the Crush icon, used for OSC 99 notifications.
 8// Native macOS notifications don't support custom icons via beeep, but OSC 99 does.
 9//
10//go:embed crush-icon.png
11var Icon []byte