1
1
Fork 0
configs/fish/functions/pw.fish

13 lines
300 B
Fish

function pw
set -l clipboard
if type -q pbcopy
set clipboard pbcopy
else if type -q xclip
set clipboard xclip
else
echo "No clipboard handler found!"
return 1
end
cryptopassphrase -k ~/.cryptopassphrase.key $argv | tr -d '\n' | $clipboard
end