/grim

Grab images from a Wayland compositor

Primary LanguageCMIT LicenseMIT

grim

Grab images from a Wayland compositor. Works great with slurp and with sway >= 1.0.

Example usage

Screenshoot all outputs:

grim screenshot.png

Screenshoot a specific output:

grim -o DP-1 screenshot.png

Screenshoot a region:

grim -g "10,20 300x400" screenshot.png

Select a region and screenshoot it:

grim -g "$(slurp)" screenshot.png

Use a timestamped filename:

grim $(xdg-user-dir PICTURES)/$(date +'%Y-%m-%d-%H%M%S_grim.png')

Screenshoot and copy to clipboard:

grim - | wl-copy

Grab a screenshot from the focused monitor under Sway, using swaymsg and jq:

grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') screenshot.png

Package manager installation

  • Arch Linux: pacman -S grim

Building from source

Install dependencies:

  • meson
  • wayland
  • cairo
  • libjpeg (optional)

Then run:

meson build
ninja -C build

To run directly, use build/grim, or if you would like to do a system installation (in /usr/local by default), run ninja -C build install.

Contributing

Either send GitHub pull requests or send patches on the mailing list.

License

MIT