blob: 084874a272fba6e22e99e80293cfa91516ac0414 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- a/notifier/libnotify.go
+++ b/notifier/libnotify.go
@@ -32,9 +32,10 @@ func SetupLibnotifyNotifier(notifiers *sync.Map) {
}
notification := notify.Notification{
- AppName: "yubikey-touch-detector",
- AppIcon: "yubikey-touch-detector",
- Summary: "YubiKey is waiting for a touch",
+ AppName: "YubiKey",
+ AppIcon: "yubikey-touch-symbolic",
+ Summary: "Waiting for touch",
+ Body: "Confirm presence by touching your YubiKey.",
}
reset := func(msg *notify.NotificationClosedSignal) {
|