Slightly changed introductory text
This commit is contained in:
parent
c6ca88ea3f
commit
5f8201110e
12
README.md
12
README.md
|
@ -1,11 +1,11 @@
|
||||||
sxiv: Simple (or small or suckless) X Image Viewer
|
sxiv: Simple (or small or suckless) X Image Viewer
|
||||||
|
|
||||||
sxiv is a really simple alternative to feh and qiv. Its only dependency besides
|
sxiv is an alternative to feh and qiv. Its only dependency besides xlib is
|
||||||
xlib is imlib2. The primary goal for writing sxiv is to create an image viewer,
|
imlib2. The primary goal for writing sxiv is to create an image viewer, which
|
||||||
which only implements the most basic features required for fast image viewing.
|
only has the most basic features required for fast image viewing (the ones I
|
||||||
It works nicely with tiling window managers and its code base should be kept
|
want). It works nicely with tiling window managers and its code base should be
|
||||||
small and clean to make it easy for you to dig into it and customize it for
|
kept small and clean to make it easy for you to dig into it and customize it
|
||||||
your needs.
|
for your needs.
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
2
main.c
2
main.c
|
@ -87,7 +87,7 @@ void remove_file(int n, unsigned char silent) {
|
||||||
|
|
||||||
if (filecnt == 1) {
|
if (filecnt == 1) {
|
||||||
if (!silent)
|
if (!silent)
|
||||||
fprintf(stderr, "sxiv: no more files to display\n");
|
fprintf(stderr, "sxiv: no more files to display, aborting\n");
|
||||||
cleanup();
|
cleanup();
|
||||||
exit(!silent);
|
exit(!silent);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue