Screenshots
From awesome
| Languages: |
English • Français |
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
Calmar's
Awesome N810
Mshankar's
anrxc's
Gigamo's
bioe's
Alan's
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
lrvick's
Other
Most of the entries on the User Configuration Files page have screenshots attached.