From cf51bfd7b82aedf80d9cf82f9b7770ed036fa1c1 Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Mon, 16 May 2022 22:35:38 +1000 Subject: [PATCH] flameshot: refresh page (#8022) --- pages/linux/flameshot.md | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/pages/linux/flameshot.md b/pages/linux/flameshot.md index bafcef76ec..81198b326c 100644 --- a/pages/linux/flameshot.md +++ b/pages/linux/flameshot.md @@ -4,30 +4,34 @@ > Supports basic image editing, such as text, shapes, colors, and imgur. > More information: . -- Launch flameshot with a simpler interactive mode: - -`flameshot launcher` - -- Launch flameshot and immediately start interactively annotating parts of the screen to screenshot: - -`flameshot gui` - -- Take a full screenshot (all monitors): +- Create a fullscreen screenshot: `flameshot full` -- Take a screenshot from monitor 1: +- Create a screenshot interactively: -`flameshot screen --number {{1}}` +`flameshot gui` -- Set the save path to write screenshots to: +- Create a screenshot and save it to a specific path: -`flameshot full --path {{path/to/directory}}` +`flameshot gui --path {{path/to/directory}}` -- Delay the screenshot for N milliseconds and output to clipboard: +- Create a screenshot interactively in a simplified mode: -`flameshot full --delay {{2000}} --clipboard` +`flameshot launcher` -- Take a screenshot and export it to standard-output: +- Create a screenshot from a specific monitor: + +`flameshot screen --number {{2}}` + +- Create a screenshot and print it to the standard output: `flameshot gui --raw` + +- Create a screenshot and copy it to the clipboard: + +`flameshot gui --clipboard` + +- Create a screenshot with a specific delay in seconds: + +`flameshot full --delay {{5}}`