configs  Artifact [8140148617]

Artifact 8140148617367fdcb8db2020ad94f6a9816b0a141ca5979036275500e317d93c:


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 ~/.scrypt-pwgen.key $argv | tr -d '\n' | $clipboard
end