#!/bin/zsh

TMP=$(mktemp /tmp/qrencode.XXXXX)
qrencode -l H -o $TMP "$(xclip -out)"
feh --force-aliasing $TMP
rm -v $TMP
