update readme
This commit is contained in:
parent
8555dc0c37
commit
b7a390fd49
2 changed files with 5 additions and 6 deletions
|
@ -1,19 +1,16 @@
|
||||||
leanshot
|
leanshot
|
||||||
========
|
========
|
||||||
|
|
||||||
Screenshot-capturing utility.
|
Screenshot-capturing utility for X11.
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
You must have imlib2 and OpenGL installed. Fortunately, these are relatively
|
You must have xcb installed.
|
||||||
common libraries.
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Binary distributions are available on the [releases](https://github.com/iptq/leanshot/releases) page.
|
|
||||||
|
|
||||||
To install from crates.io, use:
|
To install from crates.io, use:
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -38,6 +35,8 @@ $XCLIP -selection clipboard -t image/png -i $FILE
|
||||||
|
|
||||||
Then, you can bind this script to the keybinds of your choice using your window manager's config.
|
Then, you can bind this script to the keybinds of your choice using your window manager's config.
|
||||||
|
|
||||||
|
You can find other scripts in the `contrib/` directory.
|
||||||
|
|
||||||
Contact
|
Contact
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
outdir=~/Pictures/Screenshots
|
outdir=$HOME/Pictures/Screenshots
|
||||||
mkdir -p "${outdir}"
|
mkdir -p "${outdir}"
|
||||||
|
|
||||||
file=$(mktemp --suffix .png)
|
file=$(mktemp --suffix .png)
|
||||||
|
|
Loading…
Reference in a new issue