stuff/stuff.sh

6 lines
256 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
convert -pointsize 55 -fill black -annotate +10+300 "$@" -colorspace RGB $STUFF_FILE $FILE ; xclip -selection clipboard -t image/png -i $FILE