9 lines
190 B
Bash
Executable file
9 lines
190 B
Bash
Executable file
#!/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 \
|
|
-
|