[![nsxiv](https://raw.githubusercontent.com/nsxiv/nsxiv/gh-pages/img/logo.png)](https://github.com/nsxiv/nsxiv) [![tags](https://img.shields.io/github/v/tag/nsxiv/nsxiv?style=flat-square)](https://github.com/nsxiv/nsxiv/tags) [![license](https://img.shields.io/badge/license-GPL--2.0-lightgreen?style=flat-square)](https://github.com/nsxiv/nsxiv/blob/master/LICENSE) [![loc](https://img.shields.io/tokei/lines/github/nsxiv/nsxiv?color=red&style=flat-square)](https://github.com/nsxiv/nsxiv)
**Neo (or New or Not) Simple (or Small or Suckless) X Image Viewer** -------------------------------------------------------------------- nsxiv is a fork of now unmaintained [sxiv](https://github.com/muennich/sxiv) with the purpose of being a drop-in replacement of sxiv, maintaining it and adding simple, sensible features. nsxiv is free software licensed under GPLv2 and aims to be easy to modify and customize. Please file a bug report if something does not work as documented or expected in *this* repository, after making sure you are using the latest release of nsxiv. Contributions are welcome, see [CONTRIBUTING.md](CONTRIBUTING.md#Contribution-Guideline) for details. Features -------- * Basic image operations, e.g. zooming, panning, rotating * Customizable key and mouse button mappings (in *config.h*) * Script-ability via `key-handler` * Thumbnail mode: grid of selectable previews of all images * Ability to cache thumbnails for fast re-loading * Basic support for animated/multi-frame images (GIF/WebP) * Display image information in status bar * Customizable window title Screenshots ----------- **Image mode: (Default colors)** ![Image](https://raw.githubusercontent.com/nsxiv/nsxiv/gh-pages/img/image.png "Image mode") **Thumbnail mode: (Custom colors)** ![Thumb](https://raw.githubusercontent.com/nsxiv/nsxiv/gh-pages/img/thumb.png "Thumb mode") Installing via package manager ------------------------------ nsxiv is available on the following distributions/repositories. If you don't see your distro listed here, either contact your distro's package maintainer or consider packaging it yourself and adding it to the respective community repo. Repos not tracked by repology: * Fedora: Enable the copr repo via `dnf copr enable mamg22/nsxiv`. Dependencies ------------ nsxiv requires the following software to be installed: * Imlib2 * X11 The following dependencies are optional. * inotify : Used for auto-reloading images on change. Disabled via `HAVE_INOTIFY=0` * libXft, freetype2, fontconfig : Used for the status bar. Disabled via `HAVE_LIBFONTS=0` * giflib : Used for animated gif playback. Disabled via `HAVE_LIBGIF=0`. * libexif : Used for auto-orientation and exif thumbnails. Disable via `HAVE_LIBEXIF=0` * libwebp : Used for animated webp playback. (NOTE: animated webp also requires Imlib2 v1.7.5 or above) Disabled via `HAVE_LIBWEBP=0`. Please make sure to install the corresponding development packages in case that you want to build nsxiv on a distribution with separate runtime and development packages (e.g. \*-dev on Debian). Building -------- nsxiv is built using the commands: $ make You can pass `HAVE_X=0` to `make` to disable an optional dependency. For example: $ make HAVE_LIBEXIF=0 will disable `libexif` support. Alternatively they can be disabled via editing `config.mk`. `OPT_DEP_DEFAULT=0` can be used to disable all optional dependencies. Installing nsxiv: # make install Installing desktop entry: # make install-desktop Installing icons: # make install-icon Installing all of the above: # make install-all Please note, that these requires root privileges. By default, nsxiv is installed using the prefix `/usr/local`, so the full path of the executable will be `/usr/local/bin/nsxiv`, the `.desktop` entry will be `/usr/local/share/applications/nsxiv.desktop` and the icon path will be `/usr/local/share/icons/hicolor/{size}/apps/nsxiv.png`. You can install nsxiv into a directory of your choice by changing this command to: $ make PREFIX="/your/dir" install Example scripts are installed using `EGPREFIX` which defaults to `/usr/local/share/doc/nsxiv/examples`. You can change `EGPREFIX` the same way you can change `PREFIX` shown above. The build-time specific settings of nsxiv can be found in the file *config.h*. Please check and change them, so that they fit your needs. If the file *config.h* does not already exist, then you have to create it with the following command: $ make config.h Usage ----- Please see man page for information on how to use nsxiv. To do so, execute the following after the installation: $ man nsxiv F.A.Q ----- * Can I open remote urls with nsxiv?