7 lines
173 B
Bash
Executable file
7 lines
173 B
Bash
Executable file
#!/bin/sh
|
|
|
|
scrot -s "$HOME/.local/cache/barcode-%Y-%m-%d.png" || exit
|
|
zbarimg "$HOME/.local/cache/barcode-"*
|
|
|
|
# Delete created files
|
|
rm -rf $HOME/.local/cache/barcode-*.png
|