commit 95dbb7437773eaf95930456e7bb6e557c0d8dd16
parent 28daa050e16c008c7d43e95333c60bafa59e358a
Author: Jack Mordaunt <jackmordaunt.dev@gmail.com>
Date: Wed, 15 Jan 2025 18:13:14 +0800
cmd/notify: use absolute path to icon
Signed-off-by: Jack Mordaunt <jackmordaunt.dev@gmail.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/notify/main.go b/cmd/notify/main.go
@@ -36,11 +36,11 @@ func main() {
Windows: nativenotify.WindowsConfig{
AppID: "notify-test",
GUID: "{B5E38D62-B912-486C-96E3-6FAD1082B73D}",
- IconPath: "puzzle.png",
+ IconPath: icon,
},
Linux: nativenotify.LinuxConfig{
AppName: "notify-test",
- AppIcon: "puzzle.png",
+ AppIcon: icon,
},
Darwin: nativenotify.DarwinConfig{},
}); err != nil {