A Simple X Image Viewer
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

202 行
3.9 KiB

  1. .TH SXIV 1 sxiv\-VERSION
  2. .SH NAME
  3. sxiv \- Simple (or small or suckless) X Image Viewer
  4. .SH SYNOPSIS
  5. .B sxiv
  6. .RB [ \-adFfhpqrstvZ ]
  7. .RB [ \-g
  8. .IR GEOMETRY ]
  9. .RB [ \-z
  10. .IR ZOOM ]
  11. .IR FILE ...
  12. .SH DESCRIPTION
  13. sxiv is a simple image viewer for X. It only has the most basic features
  14. required for fast image viewing.
  15. .P
  16. sxiv opens all named
  17. .IR FILE s,
  18. or reads the names of the files to open from standard input, if only a single
  19. hyphen\-minus
  20. .RB ( \- )
  21. is given.
  22. .P
  23. sxiv has two modes of operation: image and thumbnail mode. The default is image
  24. mode, in which only the current image is shown. In thumbnail mode a grid of
  25. small previews is displayed, making it easy to choose an image to open.
  26. .P
  27. Please note, that the fullscreen mode requires an EWMH/NetWM compliant window
  28. manager.
  29. .SH OPTIONS
  30. .TP
  31. .B \-a
  32. Display all given files, do not filter out unsupported files. This might result
  33. in a much shorter startup time, when the file list is very long or contains
  34. large files of slow loadable types, e.g. gif and progressive jpg.
  35. .TP
  36. .B \-d
  37. Scale all images to 100%, but fit large images into window.
  38. .TP
  39. .B \-F
  40. Make the window fixed/floating by setting the minimum and maximum width/height
  41. size-hints to the window width/height.
  42. .TP
  43. .B \-f
  44. Start in fullscreen mode.
  45. .TP
  46. .BI "\-g " GEOMETRY
  47. Set window position and size. See section GEOMETRY SPECIFICATIONS of X(7) for
  48. more information on
  49. .IR GEOMETRY .
  50. .TP
  51. .B \-h
  52. Print brief usage information to standard output and exit.
  53. .TP
  54. .B \-p
  55. Pixelize images, i.e. turn off anti-aliasing.
  56. .TP
  57. .B \-q
  58. Be quiet, disable warnings to standard error stream.
  59. .TP
  60. .B \-r
  61. Search the given directories recursively for images to view.
  62. .TP
  63. .B \-s
  64. Scale all images to fit into window.
  65. .TP
  66. .B \-t
  67. Start in thumbnail mode.
  68. .TP
  69. .B \-v
  70. Print version information to standard output and exit.
  71. .TP
  72. .B \-Z
  73. The same as `-z 100'.
  74. .TP
  75. .BI "\-z " ZOOM
  76. Scale all images to the current zoom level, use a zoom level of
  77. .I ZOOM
  78. at startup.
  79. .SH KEYBOARD COMMANDS
  80. .SS General
  81. .TP
  82. .B q
  83. Quit sxiv.
  84. .TP
  85. .B Escape
  86. Quit sxiv and return an exit value of 2.
  87. .TP
  88. .B Return
  89. Switch to thumbnail mode; in thumbnail mode: open selected image.
  90. .SS Navigate image list
  91. .TP
  92. .BR n ", " Space
  93. Go to the next image.
  94. .TP
  95. .BR p ", " Backspace
  96. Go to the previous image.
  97. .TP
  98. .B g
  99. Go to the first image.
  100. .TP
  101. .B G
  102. Go to the last image.
  103. .TP
  104. .B [
  105. Go 10 images backward.
  106. .TP
  107. .B ]
  108. Go 10 images forward.
  109. .SS Zooming
  110. .TP
  111. .BR + ", " =
  112. Zoom in.
  113. .TP
  114. .B \-
  115. Zoom out.
  116. .TP
  117. .B 0
  118. Set zoom level to 100%.
  119. .TP
  120. .B w
  121. Set zoom level to fit image into window.
  122. .SS Panning/Moving
  123. .TP
  124. .BR h ", " Left
  125. Pan image left; in thumbnail mode: move selection left.
  126. .TP
  127. .BR j ", " Down
  128. Pan image down; in thumbnail mode: move selection down.
  129. .TP
  130. .BR k ", " Up
  131. Pan image up; in thumbnail mode: move selection up.
  132. .TP
  133. .BR l ", " Right
  134. Pan image right; in thumbnail mode: move selection right.
  135. .SS Rotation
  136. .TP
  137. .B <
  138. Rotate image counter-clockwise by 90 degrees.
  139. .TP
  140. .B >
  141. Rotate image clockwise by 90 degrees.
  142. .SS Control window
  143. .TP
  144. .B W
  145. Resize window to fit image.
  146. .TP
  147. .B f
  148. Toggle fullscreen mode.
  149. .SS Miscellaneous
  150. .TP
  151. .B a
  152. Toggle anti-aliasing.
  153. .TP
  154. .B A
  155. Toggle visibility of alpha-channel, i.e. image transparency.
  156. .TP
  157. .B r
  158. Reload image.
  159. .SH MOUSE COMMANDS
  160. .SS Navigate image list
  161. .TP
  162. .B Button1
  163. Go to the next image; in thumbnail mode: select/open image.
  164. .TP
  165. .B Button3
  166. Go to the previous image.
  167. .SS Zooming
  168. .TP
  169. .B Ctrl+ScrollUp
  170. Zoom in.
  171. .TP
  172. .B Ctrl+ScrollDown
  173. Zoom out.
  174. .SS Panning/Moving
  175. .TP
  176. .B Button2
  177. Drag the image with the mouse while keeping this button pressed down.
  178. .TP
  179. .B ScrollUp
  180. Pan image up; in thumbnail mode: Scroll one row up.
  181. .TP
  182. .B ScrollDown
  183. Pan image down; in thumbnail mode: Scroll one row down.
  184. .TP
  185. .B Shift+ScrollUp
  186. Pan image left.
  187. .TP
  188. .B Shift+ScrollDown
  189. Pan image right.
  190. .SH AUTHORS
  191. .EX
  192. Bert Muennich <ber.t at gmx.com>
  193. Dave Reisner <d at falconindy.com>
  194. Fung SzeTat <sthorde at gmail.com>
  195. .EE
  196. .SH HOMEPAGE
  197. .TP
  198. http://github.com/muennich/sxiv
  199. .SH SEE ALSO
  200. .BR feh (1),
  201. .BR qiv (1)