aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.local/bin/wqr
blob: e00a13e61f5ac4db862e6b11ea77b6f919824ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env sh

if [ -z "$1" ]; then
    text=$(wl-paste)
elif [ "$1" = "-" ]; then
    read -r text
else
    text="$1"
fi

printf '%s' "$text" | qrencode -t SVG -o - | feh - --conversion-timeout 1