Screenshots

From awesome
Jump to: navigation, search

You can take screenshots with imagemagick's import:

 import -window root -quality 98 screenshot.png

You can resize screenshots with imagemagick's convert:

 convert -resize "30%" screenshot.png screenshot.th.png

To simplify capturing you can automate it with a script ~/.bin/capscr:

 #!/bin/bash
 timestamp="$(date +%Y%m%d%H%M%S)"
 targetbase="$HOME/capscr"
 mkdir -p $targetbase
 [ -d $targetbase ] || exit 1
 import -window root $targetbase/$timestamp.png

and bind it to the "PrintScrn" keyboard key using globalkeys ~/.config/awesome/rc.lua:

   -- bind PrintScrn to capture a screen
   awful.key(
       {},
       "Print",
       function()
           awful.util.spawn("capscr",false)
       end
   )


Contents

Genjix

Genjix awesome desktop.png

Calmar's

Calmar.png

Awesome N810

Awesome-n810.jpg

Mshankar's

AwesomeFbpanelVimDzen.png

anrxc's

Screenshot-anrxc.png

Gigamo's

Gigamo current ss.png

bioe's

Bioe007 sshot.png

Alan's

Awesome 2.png

Garoth's

This is a collection of screenshots from various Awesome users: awesome showcase

purehate's

Some of these are works in progress: screen 1, screen 2, screen 3, 4 monitors, my awesome box, my workstation.

Christophe-Marie's

Christphe's screenshot

lrvick's

6screenshot.jpg

Other

Most of the entries on the User Configuration Files page have screenshots attached.

Personal tools