7 lines
286 B
Bash
Executable file
7 lines
286 B
Bash
Executable file
#!/bin/bash
|
|
file=/tmp/$(date "+%Y%m%d-%H%M%S")_screenshot.png
|
|
|
|
grim -g "$(slurp)" "$file" &&
|
|
satty --filename "$file" --fullscreen &&
|
|
yad --title="Upload?" --text="Upload image?" --image="dialog-question" --default-cancel &&
|
|
curl -F "file=@$file" https://drop.mz.uy | xargs xdg-open
|