stuff/stuff.sh

12 lines
388 B
Bash
Raw Normal View History

2021-05-03 21:31:20 +00:00
#!/bin/sh
[ $# -eq 0 ] && exit 1
STUFF_FILE=/usr/share/stuff/stuff.png
FILE=/tmp/$(date "+%Y-%m-%d-%H-%M-%S").png
2021-05-03 22:29:47 +00:00
LABEL_FILE=$FILE.label.png
text=$@
2021-05-03 23:05:05 +00:00
convert -gravity center -background white -fill black -pointsize 80 -size 500x caption:"$text" $LABEL_FILE
convert -gravity center -background white $LABEL_FILE $STUFF_FILE +append $FILE
2021-05-03 22:29:47 +00:00
xclip -selection clipboard -t image/png -i $FILE