#!/bin/sh
if [ -z "$1" ]; then
	rm -f $HOME/tmp.png
	scrot -sz $HOME/tmp.png
else
	scrot -sz "$HOME/$1"
fi