10 lines
190 B
Text
10 lines
190 B
Text
|
#!/bin/sh
|
||
|
# Credit to Maddison Hellstrom (@b0o on Github)
|
||
|
qrencode -o - -s 1 \
|
||
|
"$(xclip -out -selection clipboard)" |
|
||
|
feh --zoom max \
|
||
|
-F \
|
||
|
--force-aliasing \
|
||
|
--image-bg white \
|
||
|
-
|