Skip to content

Commit 3a79ac2

Browse files
committed
Translate and update readme for v0.4.0
1 parent b966a10 commit 3a79ac2

File tree

4 files changed

+224
-171
lines changed

4 files changed

+224
-171
lines changed

README.md

+33-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- [Usage](#usage)
1111
- [Shortcuts](#shortcuts)
1212
- [Considerations](#considerations)
13+
- [Installation](#installation)
1314
- [Compilation](#compilation)
1415
- [Debian](#debian)
1516
- [Fedora](#fedora)
@@ -30,18 +31,23 @@ Example commands:
3031
- capture with GUI:
3132

3233
`flameshot gui`
33-
- open GUI with a delay of 2 seconds:
3434

35-
`flameshot gui -d 2000`
3635
- capture with GUI with custom save path:
3736

3837
`flameshot gui -p ~/myStuff/captures`
38+
39+
- open GUI with a delay of 2 seconds:
40+
41+
`flameshot gui -d 2000`
42+
3943
- fullscreen capture (asking savepath):
4044

4145
`flameshot full`
46+
4247
- fullscreen capture with custom save path (no GUI) and delayed:
4348

4449
`flameshot full -p ~/myStuff/captures -d 5000`
50+
4551
- fullscreen capture with custom save path copying to clipboard:
4652

4753
`flameshot full -c -p ~/myStuff/captures`
@@ -52,6 +58,21 @@ A systray icon will be in your system's panel while Flameshot is running.
5258
Do a right click on the tray icon and you'll see some menu items to open the configuration window and the information window.
5359
Check out the information window to see all the available shortcuts in the graphical capture mode.
5460

61+
### CLI configuration
62+
You can use the graphical menu to configure Flameshot, but alternatively you can use your terminal or scripts to do so.
63+
64+
- open the confguration menu:
65+
66+
`flameshot config`
67+
68+
- show the initial help message in the capture mode:
69+
70+
`flameshot config --showhelp true`
71+
72+
- for more information about the available options use the help flag:
73+
74+
`flameshot config -h`
75+
5576
## Shortcuts
5677

5778
These shortcuts are available in GUI mode:
@@ -65,6 +86,7 @@ These shortcuts are available in GUI mode:
6586
| CTRL + S | Save selection as a file |
6687
| CTRL + Z | Undo the last modification |
6788
| Right Click | Show color picker |
89+
| Mouse Wheel | Change the tool's thickness |
6890

6991
Shift + drag a handler of the selection area: mirror redimension in the opposite handler.
7092

@@ -80,6 +102,15 @@ Shift + drag a handler of the selection area: mirror redimension in the opposite
80102

81103
- Execute the command `flameshot` without parameters or use the "Launch Flameshot" desktop entry to launch a running instance of the program without taking actions.
82104

105+
## Installation
106+
107+
There are a packages available for a few distros:
108+
- [Arch](https://aur.archlinux.org/packages/flameshot/)
109+
- [Open Suse](https://software.opensuse.org/package/flameshot)
110+
111+
If you are not using any of these distros you'll need to compile the program :(
112+
but don't worry, it's pretty easy!
113+
83114
## Compilation
84115
### Debian
85116
Compilation Dependencies:

src/infowindow.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ QVector<const char *> InfoWindow::m_description = {
5757
QT_TR_NOOP("Save selection as a file"),
5858
QT_TR_NOOP("Undo the last modification"),
5959
QT_TR_NOOP("Show color picker"),
60-
QT_TR_NOOP("Change draw tool thickness")
60+
QT_TR_NOOP("Change the tool's thickness")
6161
};
6262

6363
void InfoWindow::initInfoTable() {
233 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)