blob: f56a7711fa867899ce42dcb2323c3b1a66916024 (
plain)
1
2
3
4
5
6
|
#!/bin/sh -e
selection=$(hacksaw -f "-i %i -g %g")
shotgun $selection - | xclip -t 'image/png' -selection clipboard
random_word=$(cat /usr/share/dict/cracklib-small | shuf -n 1)
shotgun $selection - >/tmp/$random_word.png
|