1//go:build !darwin
2
3package notification
4
5import (
6 _ "embed"
7)
8
9//go:embed crush-icon-solo.png
10var icon []byte
11
12// notificationIcon contains the embedded PNG icon data for desktop notifications.
13var notificationIcon interface{} = icon