screen/window capture program?
ted leslie
tleslie-RBVUpeUoHUc at public.gmane.org
Wed Jul 13 18:01:01 UTC 2005
# A simple bash script to screen capture
#
# Supply two arguments, the window id and number of captures
let x=1
# loop until it has captured the number of captures requested
while [ "$x" -le "$2" ]
do
import -window $1 "capture$x.miff"
# uncomment the line below
# if you want more time in between screen captures
sleep 1; # capture once per second
let x+=1
done
On Wed, Jul 13, 2005 at 09:40:31AM -0400, phiscock-g851W1bGYuGnS0EtXVNi6w at public.gmane.org wrote:
>
> The image manipulation program 'xv' also has that facility, and it's
> somewhat simpler to use than the gimp.
>
> Peter
>
> > How do you capture screen or particular window as an image file? I know
> > about 'xwininfo' to get ID of particular window. But, I'm clueless
> > after that...
> >
> > --
> > William Park <opengeometry-FFYn/CNdgSA at public.gmane.org>, Toronto, Canada
> > ThinFlash: Linux thin-client on USB key (flash) drive
> > http://home.eol.ca/~parkw/thinflash.html
> > BashDiff: Super Bash shell
> > http://freshmeat.net/projects/bashdiff/
> > --
> > The Toronto Linux Users Group. Meetings: http://tlug.ss.org
> > TLUG requests: Linux topics, No HTML, wrap text below 80 columns
> > How to UNSUBSCRIBE: http://tlug.ss.org/subscribe.shtml
> >
>
>
> --
> The Toronto Linux Users Group. Meetings: http://tlug.ss.org
> TLUG requests: Linux topics, No HTML, wrap text below 80 columns
> How to UNSUBSCRIBE: http://tlug.ss.org/subscribe.shtml
>
>
--
The Toronto Linux Users Group. Meetings: http://tlug.ss.org
TLUG requests: Linux topics, No HTML, wrap text below 80 columns
How to UNSUBSCRIBE: http://tlug.ss.org/subscribe.shtml
More information about the Legacy
mailing list