|
@@ -27,6 +27,13 @@ ffmpeg -f x11grab -s "$W"x"$H" -i :0.0+$X,$Y -f alsa -i pulse ~/myfile.webm
|
27
|
27
|
slrn lets you select a region or window and ffmpeg will record it in the format of your choice!
|
28
|
28
|
Combined with keybinds and a server on your filesystem you can make a really neat and unobtrusive screenshooter.
|
29
|
29
|
|
|
30
|
+You can also take images using imagemagick like so:
|
|
31
|
+```bash
|
|
32
|
+#!/bin/bash
|
|
33
|
+eval `slrn`
|
|
34
|
+import -window root -crop "$W"x"$H"+$X+$Y ~/myimage.png
|
|
35
|
+```
|
|
36
|
+
|
30
|
37
|
lets see some action
|
31
|
38
|
--------------------
|
32
|
39
|
Ok. Here's a comparison between 'scrot -s's selection and slrn's:
|