A Simple X Image Viewer
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/bin/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. -d scale all images to 100%, but fit large images into window
  25. -f start in fullscreen mode
  26. -p pixelize, i.e. turn off image anti-aliasing
  27. -s scale all images to fit into window
  28. -v print version information and exit
  29. -w WIDTHxHEIGHT
  30. set window width to WIDTH and height to HEIGHT
  31. (if HEIGHT is omitted, height is also set to WIDTH)
  32. -Z same as `-z 100'
  33. -z ZOOM scale all images to current zoom level, use ZOOM at startup
  34. Use the following keys to control sxiv:
  35. q Quit sxiv
  36. Escape Quit sxiv and return an exit value of 2 (useful for scripting)
  37. n,Space Go to the next image
  38. p,Backspace Go to the previous image
  39. g/G Go to first/last image
  40. [/] Go 10 images backward/forward
  41. +,= Zoom in
  42. - Zoom out
  43. h,j,k,l Pan image left/down/up/right (also with arrow keys)
  44. <,> Rotate image (counter-)clockwise by 90 degrees
  45. f Toggle fullscreen mode (requires an EWMH/NetWM compliant
  46. window manager)
  47. a Toggle anti-aliasing
  48. Additionally, sxiv can be controlled via the following mouse commands:
  49. Button1 Go to the next image
  50. Button3 Go to the previous image
  51. ScrollUp Pan image up
  52. ScrollDown Pan image down
  53. Shift+ScrollUp Pan image left
  54. Shift+ScrollDown Pan image right
  55. Ctrl+ScrollUp Zoom in
  56. Ctrl+ScrollDown Zoom out