aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xqrpaste3
1 files changed, 2 insertions, 1 deletions
diff --git a/qrpaste b/qrpaste
index f853941..889bd17 100755
--- a/qrpaste
+++ b/qrpaste
@@ -7,6 +7,7 @@
BASENAME="`basename $0`"
TEMP="`mktemp -d`"
OUT="$TEMP/clipboard.png"
+SIZE="15"
# Check
if ! which qrencode &> /dev/null; then
@@ -21,7 +22,7 @@ elif ! which display &> /dev/null; then
fi
# Run
-qrencode -o "$OUT" "`xclip -o`"
+qrencode -o "$OUT" "`xclip -o`" -s $SIZE
display $OUT
# Teardown