From: Silvio Rhatto Date: Wed, 18 Jan 2017 22:41:08 +0000 (-0200) Subject: Adds qrpaste X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=2c121523b3b3a8a299ab1c34cc154c42c040fecd;p=utils-x11.git Adds qrpaste --- diff --git a/qrpaste b/qrpaste new file mode 100755 index 0000000..7800c7d --- /dev/null +++ b/qrpaste @@ -0,0 +1,25 @@ +#!/bin/bash +# +# Display clipboard content into as qrcode +# + +# Setup +BASENAME="`basename $0`" +TEMP="`mktemp -d`" +OUT="$TEMP/clipboard.png" + +# Check +if ! which qrencode &> /dev/null; then + echo "$BASENAME: qrencode not found" + exit 1 +elif ! which xclip &> /dev/null; then + echo "$BASENAME: xclip not found" + exit 1 +fi + +# Run +qrencode -o "$OUT" "`xclip -o`" +display $OUT + +# Teardown +rm -rf $TEMP