Taking a screenshot
Contents
import
An easy way to take a screenshot of your current system is using the Template:Codeline command:
import -window root screenshot.jpg
Template:Codeline is part of the Template:Package Official package.
Running Template:Codeline without the Template:Codeline option allows selecting a window or an arbitrary region interactively.
Screenshot of multiple X screens
If you run twinview or dualhead, simply take the screenshot twice and use Template:Codeline to paste them together:
import -window root -display :0.0 -screen /tmp/0.png import -window root -display :0.1 -screen /tmp/1.png convert +append /tmp/0.png /tmp/1.png screenshot.png rm /tmp/{0,1}.png
Screenshot of individual Xinerama heads
Xinerama-based multi-head setups have only one virtual screen. If the pysical screens are different in height, you will find dead space in the screenshot. In this case, you may want to take screenshot of each pysical screen individually. As long as Xinerama information is available from the X server, the following will work:
#!/bin/bash xdpyinfo -ext XINERAMA | sed '/^ head #/!d;s///' | while IFS=' :x@,' read i w h x y; do import -window root -crop $wx$h+$x+$y head_$i.png done
Screenshot of the active/focused window
The following script takes a screenshot of the currently focused window. It works with EWMH/NetWM compatible X Window Managers. To avoid overwriting previous screenshots, the current date is used as the filename.
#!/bin/bash activeWinLine=$(xprop -root | grep "_NET_ACTIVE_WINDOW(WINDOW)") activeWinId=${activeWinLine:40} import -window "$activeWinId" /tmp/$(date +%F_%H%M%S_%N).png
GIMP
You also can take screenshots with GIMP (File -> Create -> Screenshot...).
xwd
xwd is part of the Template:Package Official package.
Take a screenshot of the root window:
xwd -root -out screenshot.xwd
See the xwd man page for more information.
scrot
Template:Package Official, available in the Template:Codeline repository, enables taking screenshots from the CLI, and offers features such as a user-definable time delay. Unless instructed otherwise, it saves the file in the current working directory.
scrot -t 20 -d 5
The above command saves a dated Template:Filename file, along with a thumbnail (20% of original), for Web posting. It provides a five second delay before capturing, in this instance.
See the Template:Codeline man page for more information.
KDE
If you use KDE, you might want to use KSnapshot, which can also be activated using <Prt Scr>.
KSnapshot is provided by the Template:Package Official package in [extra].
GNOME
GNOME users can press <Prt Scr> or Apps->Accessories->Take Screenshot.
Other Desktop Environments or Window Managers
For other desktop environments such as LXDE or window managers such as Openbox and Compiz, one can add the above commands to the hotkey to take the screenshot. For example,
import -window root ~/Pictures/`date '+%Y%m%d-%H%M%S'`.png
Adding the above command to the <Prt Scr> key to Compiz allows to take the screenshot to the Pictures folder according to date and time. Notice that the Template:Filename file in Openbox does not understand commas; so, in order to bind that command to the <Prt Scr> key in Openbox, you need to add the following to the keyboard section of your Template:Filename file:
<!-- Screenshot --> <keybind key="Print"> <action name="Execute"> <command>sh -c "import -window root ~/Pictures/`date '+%Y%m%d-%H%M%S'`.png"</command> </action> </keybind>
Virtual console
Install a framebuffer and use Template:Package Official, Template:Package Official, or Template:Package Official to take a screenshot.