mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-01 00:19:22 +01:00
20 lines
518 B
Bash
Executable File
20 lines
518 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Arguments: Name & content
|
|
|
|
# -l H uses the highest error correction in case 30 % gets damaged (or artistried upon)
|
|
# -s $PIXELSIZE doubles the dot/pixel size from 3
|
|
PIXELSIZE=6
|
|
|
|
# Outputs QR code to terminal
|
|
|
|
# ${@:2} takes all arguments except the first one
|
|
qrencode -l H -t utf8 "${@:2}"
|
|
# Stores QR code as $1.png (first argument)
|
|
qrencode -s $PIXELSIZE -l H -o "$1".png "${@:2}"
|
|
# My stepfather wants jpg
|
|
convert "$1".png "$1".jpg
|
|
# Prints details
|
|
echo "Name: $1.png"
|
|
echo "Content: ${@:2}"
|