#! /bin/sh
# Time-stamp: <2013-05-13 12:16:50 jdm>
#
# $1 is the directory in which to
# dump the screenshot. Empty
# indicates /tmp.
umask 077
if test -z $1 ; then
cd /tmp
else
cd $1
fi
/usr/bin/scrot -s
The above works well, and is much less time-consuming than the menu-driven approach in Mate.
This post replaces an older one.
No comments:
Post a Comment