Add support for a couple other clipboard tools to helper script

This commit is contained in:
IamTheFij 2021-07-22 12:01:26 -07:00
parent 73b6aef9d9
commit c688f8ce00
1 changed files with 11 additions and 1 deletions

View File

@ -6,5 +6,15 @@ complete -c yk -a set-password -d "Set authentication password"
complete -c yk -a "(yk list)" -d "Credential to get TOTP for"
function yk-copy --description "Select a credential using fzf and copy it to clipboard"
yk (yk list | fzf) | pbcopy
set result (yk (yk list | fzf))
if command -q pbcopy
echo "$result" | pbcopy
else if command -q xsel
echo "$result" | xsel --clipboard
else if command -q xclip
echo "$result" | xclip
else
echo "No clipboard command found. Code is $result"
end
end