make a screenshot

Gérald Verdon gvlistes at mail.telepac.pt
Mon Mar 22 15:04:04 CET 2004


Le lun 22/03/2004 à 13:13, Rakotomandimby Mihamina a écrit :

> what do you use to make a screen shot?

The following script, bound to PrintScreen key with xbindkeys.

Give the possibility to capture the whole screen or a portion (set with
Shift and mouse).

Gérald

---------
#!/bin/bash

#Ca c'est le dossier dans lequel mes captures sont enregistrées 

path=/directory_of_your_captures/;

#Nom de fichier=date et heure
 
name=$(date +"%Y.%m.%d-%H.%M.%S");

while [ $# -ge 1 ];
do
 case $1 in
  "root")
   option="$option -window root";
   ;;
  "div2")
   option="$option -geometry 100%";
   ;;
  *)
   ;;
 esac;
shift 1;
done;

import $option $path/$name.png;

---------




More information about the Xfce mailing list