Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mshot 161B

1234567891011
  1. #!/bin/bash
  2. if [ "$1" = "" ]; then
  3. echo "mshot <name>"
  4. fi
  5. sleep 0.2
  6. DIR=`mktemp -d`
  7. gnome-screenshot -f "$DIR/pic.png"
  8. mupload "$DIR/pic.png" "img/${1}.png"