manpage.diff 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. Tanım: Debian manpage and path setup
  2. Author: Jens Peter Secher <jps@debian.org>
  3. Index: trayer/trayer.1
  4. ===================================================================
  5. --- /dev/null 1970-01-01 00:00:00.000000000 +0000
  6. +++ trayer/trayer.1 2011-05-08 21:38:37.000000000 +0200
  7. @@ -0,0 +1,190 @@
  8. +.TH TRAYER 1 "Feb 14, 2005" "FVWM\-Crystal"
  9. +.SH NAME
  10. +trayer \- a lightweight GTK2\-based systray for UNIX desktop
  11. +.SH SYNOPSIS
  12. +.B trayer \-h
  13. +.br
  14. +.B trayer \-v
  15. +.br
  16. +.B trayer
  17. +.\"
  18. +.RB [\| \-\-edge
  19. +.RI \| left \||\| right \||\| top \||\| bottom \||\| none \|]
  20. +.\"
  21. +.RB [\| \-\-align
  22. +.RI \| left \||\| right \||\| center \|]
  23. +.\"
  24. +.RB [\| \-\-margin
  25. +.RI \| <size> \|]
  26. +.\"
  27. +.RB [\| \-\-widthtype
  28. +.RI \| request \||\| pixel \||\| percent
  29. +.RI \|]
  30. +.\"
  31. +.RB [\| \-\-width
  32. +.RI \| <size> \|]
  33. +.\"
  34. +.RB [\| \-\-heighttype
  35. +.RI \| <pixel> \|]
  36. +.\"
  37. +.RB [\| \-\-height
  38. +.RI \| <size> \|]
  39. +.\"
  40. +.RB [\| \-\-SetDockType
  41. +.RI \| true \||\| false \|]
  42. +.\"
  43. +.RB [\| \-\-SetPartialStrut
  44. +.RI \| true \||\| false \|]
  45. +.\"
  46. +.RB [\| \-\-transparent
  47. +.RI \| true \||\| false \|]
  48. +.\"
  49. +.RB [\| \-\-alpha
  50. +.RI \| <value> \|]
  51. +.\"
  52. +.RB [\| \-\-tint
  53. +.RI \| <color> \|]
  54. +.\"
  55. +.RB [\| \-\-distance
  56. +.RI \| <length> \|]
  57. +.\"
  58. +.RB [\| \-\-expand
  59. +.RI \| true \||\| false \|]
  60. +.\"
  61. +.RB [\| \-\-padding
  62. +.RI \| <size> \|]
  63. +.\"
  64. +.SH DESCRIPTION
  65. +.B trayer
  66. +is a small program designed to provide system tray similar to these in
  67. +.B GNOME
  68. +/
  69. +.B KDE
  70. +desktop environments for window managers which does not
  71. +support that function. It is similar to other applications such as
  72. +.B peksystray
  73. +and \fBdocker\fP.
  74. +.PP
  75. +System tray is a place, where many applications put their icons, so they are
  76. +always visible. Such icons may present status of an application and allow user
  77. +to control the program.
  78. +.PP
  79. +\fBtrayer\fP's code was extracted from \fBfbpanel\fP application, you can find more
  80. +about it on its homepage: http://fbpanel.sourceforge.net/.
  81. +.SH OPTIONS
  82. +This programs follow the usual GNU command line syntax, with long
  83. +options starting with two dashes (`-').
  84. +A summary of options is included below.
  85. +.TP
  86. +.B \-\-help
  87. +.TP
  88. +.B \-h
  89. +Show summary of options and exit.
  90. +
  91. +.TP
  92. +.B \-\-version
  93. +.TP
  94. +.B \-v
  95. +Show version of program and exit.
  96. +
  97. +.TP
  98. +\fB\-\-edge\fP \fIleft\fP\||\|\fIright\fP\||\|\fItop\fP\||\|\fIbottom\fP\||\|\fInone\fP
  99. +Specifies a screen edge to use.
  100. +
  101. +.TP
  102. +\fB\-\-align\fP \fIleft\fP\||\|\fIcenter\fP\||\|\fIright\fP
  103. +Specifies an align of the icons.
  104. +
  105. +.TP
  106. +\fB\-\-margin\fP \fI<size>\fP
  107. +Specifies length of margin (in pixels)
  108. +
  109. +.TP
  110. +\fB\-\-widthtype\fB \fIrequest\fP\||\|\fIpixel\fP\||\|\fIpercent\fP
  111. +Specifies method of calculating trayer's window width:
  112. +.RS
  113. +.TP
  114. +\fIrequest\fP
  115. +Follow application icons' size, so trayer may shrink or expand dynamically.
  116. +
  117. +.TP
  118. +\fIpixel\fP
  119. +Set a fixed size, given with \fB\-\-width\fP option in pixels.
  120. +
  121. +.TP
  122. +\fIpercent\fP
  123. +Set a fixed size, given with \fB\-\-width\fP option in percentage of a length of screen edge.
  124. +.RE
  125. +
  126. +.TP
  127. +\fB\-\-width\fP \fI<size>\fP
  128. +Width of trayer's window. Ignored when \fB\-\-widthtype\fP is set to \fIrequest\fP.
  129. +
  130. +.TP
  131. +\fB\-\-heighttype\fP \fIrequest\fP\||\|\fIpixel\fP\||\|\fIpercent\fP
  132. +Specifies method of calculating trayer's window height:
  133. +.RS
  134. +.TP
  135. +\fIrequest\fP
  136. +Follow application icons' size, so trayer may shrink or expand dynamically.
  137. +
  138. +.TP
  139. +\fIpixel\fP
  140. +Set a fixed size, given with \fB\-\-height\fP option in pixels.
  141. +
  142. +.TP
  143. +\fIpercent\fP
  144. +Set a fixed size, given with \fB\-\-height\fP option in percentage of a length of screen edge.
  145. +.RE
  146. +
  147. +.TP
  148. +\fB\-\-height\fP \fI<size>\fP
  149. +Height of trayer's window. Ignored when \fB\-\-heighttype\fP is set to \fIrequest\fP.
  150. +
  151. +.TP
  152. +\fB\-\-SetDockType\fP \fItrue\fP\||\|\fIfalse\fP
  153. +Identify panel window type as dock.
  154. +
  155. +.TP
  156. +\fB\-\-SetPartialStrut\fP \fItrue\fP\||\|\fIfalse\fP
  157. +Reserve panel space so that it will not be covered by maximized windows.
  158. +
  159. +.TP
  160. +\fB\-\-transparent\fP \fItrue\fP\||\|\fIfalse\fP
  161. +Use transparency.
  162. +
  163. +.TP
  164. +\fB\-\-alpha\fP \fI<value>\fP
  165. +Percentage of transparency (0 \- nontransparent, 255 \- fully transparent)
  166. +
  167. +.TP
  168. +\fB\-\-tint\fP \fI<color>\fP
  169. +Color used to tint transparent background. Color is given as a 24-bit C hexadecimal integer, for example: 0xff0000 is red, 0xff8800 is orange and 0x00ff00 is green.
  170. +
  171. +.TP
  172. +\fB\-\-distance\fP \fI<length>\fP
  173. +Specifies distance between trayer's window and screen edge (in pixels)
  174. +
  175. +.TP
  176. +\fB\-\-expand\fP \fItrue\fP\||\|\fIfalse\fP
  177. +Specifies whether trayer may accommodate extra space when there is too much
  178. +icons.
  179. +
  180. +.TP
  181. +\fB\-\-padding\fP \fI<size>\fP
  182. +Extra space between icons and trayer window's border.
  183. +
  184. +.SH SEE ALSO
  185. +.BR fbpanel (1)
  186. +.SH AUTHORS
  187. +Anatoly Asviyan <aanatoly@users.sf.net> \- fbpanel
  188. +.br
  189. +Rafal Bisingier <ravbc@man.poznan.pl>
  190. +.br
  191. +Maciej Delmanowski <harnir@users.berlios.de>
  192. +.br
  193. +Grzegorz Nieweglowski <hoppke@dobremiasto.net>
  194. +.br
  195. +Thomas Rydzynski
  196. +.PP
  197. +This manual page was written by Tomasz Melcer <liori@interia.pl>.