diff --git a/README.md b/README.md index 8990919..284b619 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ A search provider for GNOME Shell that adds support for searching passwords in z Names of passwords will show up in GNOME Shell searches, choosing one will copy the corresponding content to the clipboard. -Supports OTP, fields (pass only) and can use GPaste (pass or rbw). +Can use the [GPaste](https://github.com/Keruspe/GPaste) clipboard manager, supports OTP and fields (pass only, requires GPaste). ![Sreencapture](misc/screencapture.gif) @@ -33,7 +33,8 @@ Ensure that python>=3.7 as well as the dbus, gobject and fuzzywuzzy Python modul Clone this repository and run the installation script as root: ``` -git clone git@github.com:jle64/gnome-shell-pass-search-provider.git +git clone https://github.com/jle64/gnome-pass-search-provider.git +cd gnome-pass-search-provider sudo ./install.sh ``` diff --git a/gnome-pass-search-provider.py b/gnome-pass-search-provider.py index 733e0eb..4f66769 100755 --- a/gnome-pass-search-provider.py +++ b/gnome-pass-search-provider.py @@ -208,7 +208,7 @@ class SearchPassService(dbus.service.Object): else: self.notify("Copied password to clipboard:", body=f"{name}") except (subprocess.CalledProcessError, FileNotFoundError, RuntimeError) as e: - self.notify("Failed to copy password or field!", body=e.output, error=True) + self.notify("Failed to copy password or field!", body=str(e), error=True) def notify(self, message, body="", error=False): try: