fix(rbw): quote password variable

password wasnt quoted so if it had spaces it would get split. pretty bad for a password manager plugin lol
This commit is contained in:
aviu16 2026-02-15 06:32:43 -05:00
commit 01d280dbfe

View file

@ -36,7 +36,7 @@ function rbwpw {
echo -n "$_random" > "$_cache"
# Use clipcopy to copy the password to the clipboard
echo -n $pw | clipcopy
echo -n "$pw" | clipcopy
echo "password for $service copied!"
# Clear the clipboard after 20 seconds, but only if the clipboard hasn't