#Instructions
After creating the screenshot.sh file you shoud:
- Assign a Key to the screenshot.sh file
#Instructions
After creating the screenshot.sh file you shoud:
| #!/bin/sh | |
| uploadImage () { | |
| curl -s -F "file=@$1" -F "upload-key=<your key here>" https://pxl.lt/screenshot/upload.php | |
| } | |
| gnome-screenshot -a --file=sc.png | |
| uploadImage "sc.png" | xclip -selection c | |
| rm "sc.png" | |
| notify-send "Done" |