diff --git a/gnome-pass-search-provider.py b/gnome-pass-search-provider.py
index 69eb586..3009e66 100755
--- a/gnome-pass-search-provider.py
+++ b/gnome-pass-search-provider.py
@@ -120,7 +120,7 @@ class SearchPassService(dbus.service.Object):
password,
dbus_interface='org.gnome.GPaste1'
)
- self.notify('Password {} copied to clipboard.'.format(name))
+ self.notify('Copied password to clipboard:', body='{}'.format(name))
except subprocess.CalledProcessError as error:
self.notify('Failed to copy password!', body=error.output, error=True)
@@ -131,7 +131,7 @@ class SearchPassService(dbus.service.Object):
if pass_cmd.returncode:
self.notify('Failed to copy password!', error=True)
else:
- self.notify('Password {} copied to clipboard.'.format(name))
+ self.notify('Copied password to clipboard:', body='{}'.format(name))
def send_password_to_clipboard(self, name):
try:
@@ -149,7 +149,7 @@ class SearchPassService(dbus.service.Object):
).Notify(
'Pass',
0,
- '',
+ 'dialog-password',
message,
body,
'',