- To install shutter
- Also useful to install (details at end of post)
- Capture the full screen :
- Capture active window :
Syntax
-a : Capture the current active window
-e : Exit after the first capture has been made
-f : Capture the entire screen
-o : Filename to save the screenshot
Note : You can save to jpeg, png, gif and bmp format
- Using a sleep command with shutter enables you to setup the capture as required :
$ sleep 5 && shutter -e -f -o FullScreen.png
- Then open the file e.g. my workspace
- A simple bash script is
- This example will create a file called 'FullScreen.png' after 5 seconds under the directory '~/Pictures/screenshots/'
Some Useful Things
- You can add the script under the a bin directory in your home folder i.e. mkdir ~/bin/
- Add your bin directory (insert your username for <username>) to your PATH within ~/.bashrc
export PATH=/home/<username>/bin:$PATH
Example
export PATH=/home/cwishaw/bin:$PATH
- Give the file executable privileges
- Using a fast access top down terminal like Guake is great to quickly start scripts with F12
- Further details can be found with 'man shutter'
Additional Package details
- gnome-web-photo: Create snapshot images and print web pages from the command line
- libnet-dbus-glib-perl - extension for the DBus GLib bindings
- libimage-exiftool-perl - Library and program to read and write meta information in multimedia files
- libimage-exif-perl - Perl module to extract EXIF information from image files
No comments:
Post a Comment