summaryrefslogtreecommitdiff
path: root/plugins/1password/opswd
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2023-01-17 12:46:15 +0100
committerTuowen Zhao <ztuowen@gmail.com>2023-01-17 12:46:15 +0100
commitdb7efd2336e4dbe6abf321b00dbc11bc5afb1355 (patch)
tree720a58ff82bf0a0e0167594131f872d453b1828e /plugins/1password/opswd
parent04b8c052e5b624873b352889423c753ed1baf9c4 (diff)
parent8f0e296dbf27026ea0515ebae0d3cc41f236ecdc (diff)
downloadzsh-db7efd2336e4dbe6abf321b00dbc11bc5afb1355.tar.gz
zsh-db7efd2336e4dbe6abf321b00dbc11bc5afb1355.tar.bz2
zsh-db7efd2336e4dbe6abf321b00dbc11bc5afb1355.zip
Merge remote-tracking branch 'github/master'
Diffstat (limited to 'plugins/1password/opswd')
-rw-r--r--plugins/1password/opswd18
1 files changed, 15 insertions, 3 deletions
diff --git a/plugins/1password/opswd b/plugins/1password/opswd
index 57672807e..0f667d2ff 100644
--- a/plugins/1password/opswd
+++ b/plugins/1password/opswd
@@ -14,6 +14,17 @@ function opswd() {
# If not logged in, print error and return
op user list > /dev/null || return
+ local username
+ # Copy the username to the clipboard
+ if ! username=$(op item get "$service" --fields username 2>/dev/null); then
+ echo "error: could not obtain username for $service"
+ return 1
+ fi
+
+ echo -n "$username" | clipcopy
+ echo "✔ username for service $service copied to the clipboard. Press Enter to continue"
+ read
+
local password
# Copy the password to the clipboard
if ! password=$(op item get "$service" --fields password 2>/dev/null); then
@@ -22,12 +33,13 @@ function opswd() {
fi
echo -n "$password" | clipcopy
- echo "✔ password for $service copied to clipboard"
+ echo "✔ password for $service copied to clipboard. Press Enter to continue"
+ read
- # If there's a one time password, copy it to the clipboard after 10 seconds
+ # If there's a one time password, copy it to the clipboard
local totp
if totp=$(op item get --otp "$service" 2>/dev/null) && [[ -n "$totp" ]]; then
- sleep 10 && echo -n "$totp" | clipcopy
+ echo -n "$totp" | clipcopy
echo "✔ TOTP for $service copied to clipboard"
fi