A Simple X Image Viewer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 2.1 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. sxiv: Simple (or small or suckless) X Image Viewer
  2. sxiv is a really simple alternative to feh and qiv. Its only dependency is
  3. imlib2. The primary goal for writing sxiv is to create an image viewer, which
  4. only implements the most basic features required for fast image viewing. It
  5. works nicely with tiling window managers and its code base should be kept small
  6. and clean to make it easy for you to dig into it and customize it for your
  7. needs.
  8. Installation
  9. ------------
  10. sxiv is built using the commands:
  11. $ make
  12. # make install
  13. Please note, that the latter one requires root privileges.
  14. By default, sxiv is installed using the prefix "/usr/local", so the full path
  15. of the executable will be "/usr/local/sbin/sxiv".
  16. You can install it into a directory of your choice by changing the second
  17. command to:
  18. # PREFIX="/your/dir" make install
  19. All build-time specific settings can be found in the file "config.h". Please
  20. check and change them, so that they fit your needs.
  21. Usage
  22. -----
  23. sxiv supports the following command-line options:
  24. -w WIDTHxHEIGHT set window width to WIDTH and height to HEIGHT
  25. (if HEIGHT is omitted, height is also set to WIDTH)
  26. Use the following keys to control sxiv:
  27. q Quit sxiv
  28. Escape Quit sxiv and return an exit value of 2 (useful for scripting)
  29. Space,n Go to the next image
  30. Backspace,p Go to the previous image
  31. g/G Go to first/last image
  32. [/] Go 10 images backward/forward
  33. +,= Zoom in
  34. - Zoom out
  35. h,j,k,l Pan image left/down/up/right
  36. <,> Rotate image (counter-)clockwise by 90 degrees
  37. f Toggle fullscreen mode (requires an EWMH/NetWM compliant
  38. window manager)
  39. a Toggle anti-aliasing
  40. Additionally, sxiv can be controlled via the following mouse commands:
  41. Button1 Go to the next image
  42. Button3 Go to the previous image
  43. ScrollUp Pan image up
  44. ScrollDown Pan image down
  45. Shift+ScrollUp Pan image left
  46. Shift+ScrollDown Pan image right
  47. Ctrl+ScrollUp Zoom in
  48. Ctrl+ScrollDown Zoom out