Emily Grace Seville преди 2 години
родител
ревизия
cf51bfd7b8
променени са 1 файла, в които са добавени 17 реда и са изтрити 13 реда
  1. 17 13
      pages/linux/flameshot.md

+ 17 - 13
pages/linux/flameshot.md

@@ -4,30 +4,34 @@
 > Supports basic image editing, such as text, shapes, colors, and imgur.
 > More information: <https://flameshot.org>.
 
-- Launch flameshot with a simpler interactive mode:
+- Create a fullscreen screenshot:
 
-`flameshot launcher`
+`flameshot full`
 
-- Launch flameshot and immediately start interactively annotating parts of the screen to screenshot:
+- Create a screenshot interactively:
 
 `flameshot gui`
 
-- Take a full screenshot (all monitors):
+- Create a screenshot and save it to a specific path:
 
-`flameshot full`
+`flameshot gui --path {{path/to/directory}}`
+
+- Create a screenshot interactively in a simplified mode:
 
-- Take a screenshot from monitor 1:
+`flameshot launcher`
+
+- Create a screenshot from a specific monitor:
 
-`flameshot screen --number {{1}}`
+`flameshot screen --number {{2}}`
 
-- Set the save path to write screenshots to:
+- Create a screenshot and print it to the standard output:
 
-`flameshot full --path {{path/to/directory}}`
+`flameshot gui --raw`
 
-- Delay the screenshot for N milliseconds and output to clipboard:
+- Create a screenshot and copy it to the clipboard:
 
-`flameshot full --delay {{2000}} --clipboard`
+`flameshot gui --clipboard`
 
-- Take a screenshot and export it to standard-output:
+- Create a screenshot with a specific delay in seconds:
 
-`flameshot gui --raw`
+`flameshot full --delay {{5}}`