Xviewer is a simple image viewer which uses the gdk-pixbuf library. It can deal with large images, and zoom and scroll with constant memory usage. Its goals are simplicity and standards compliance.
Xviewer is installed by default in Linux Mint. It is available in the Linux Mint repositories, but not in the official Ubuntu or Debian repositories. However, compiled deb packages can be found on the GitHub releases page.
Xviewer supports plugins.
Linux Mint provides a few plugins that can be installed via the xviewer-plugins
package.
Plugins can be enabled in Xviewer via Edit
> Preferences
in the Plugins
tab.
Their source code is available in the xviewer-plugins repository.
To build Xviewer from source and install it, perform the following steps.
# install build tools if necessary
sudo apt install build-essential devscripts equivs git meson
# clone this git repository, switch into cloned directory
git clone https://github.com/linuxmint/xviewer.git && cd xviewer
# generate build-dependency package and install it
mk-build-deps -s sudo -i
# build .deb packages
debuild --no-sign
# install packages
sudo debi
The concrete packages to install depend on your distro. Please note that we can't guarantee that the available library versions are compatible.
docs
build option)# prepare build, options can be set with -Doption=value
# Please check the output for errors and the effective build options.
meson --prefix=/usr/local build
# compile and install
sudo ninja -C build install
# to uninstall:
sudo ninja -C build uninstall