1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/scrot.md

33 lines
802 B
Markdown
Raw Normal View History

2019-03-04 18:06:00 +01:00
# scrot
> Screen capture utility.
> More information: <https://github.com/resurrecting-open-source-projects/scrot>.
2019-03-04 18:06:00 +01:00
- Capture a screenshot and save it to the current directory with the current date as the filename:
`scrot`
- Capture a screenshot and save it as `capture.png`:
2019-03-04 18:06:00 +01:00
`scrot {{capture.png}}`
- Capture a screenshot interactively:
`scrot --select`
- Capture a screenshot interactively without exiting on keyboard input, press `ESC` to exit:
`scrot --select --ignorekeyboard`
- Capture a screenshot interactively delimiting the region with a colored line:
`scrot --select --line color={{x11_color|rgb_color}}`
2019-03-04 18:06:00 +01:00
- Capture a screenshot from the currently focused window:
`scrot --focused`
- Display a countdown of 10 seconds before taking a screenshot:
`scrot --count --delay {{10}}`