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

15 lines
333 B
Fish

function pwnk
set -l clipboard
if type -q wl-copy
set clipboard wl-copy
else 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 $argv | tr -d '\n' | $clipboard
end