Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

22
import Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# import
> Capture some or all of an X server screen, and save the image to a file.
> Part of ImageMagick.
> More information: <https://imagemagick.org/script/import.php>.
- Capture the entire X server screen into a PostScript file:
`import -window root {{path/to/output.ps}}`
- Capture contents of a remote X server screen into a PNG image:
`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{path/to/output.png}}`
- Capture a specific window given its ID as displayed by `xwininfo` into a JPEG image:
`import -window {{window_id}} {{path/to/output.jpg}}`