~ubuntu-branches/ubuntu/dapper/trayer/dapper

« back to all changes in this revision

Viewing changes to trayer.1

  • Committer: Bazaar Package Importer
  • Author(s): Tomasz Melcer
  • Date: 2005-02-13 14:10:33 UTC
  • Revision ID: james.westby@ubuntu.com-20050213141033-chuezby5qnlw2dj9
Tags: 1.0-1
* Initial Release (Closes: #295835).
* Adjusted Makefile to fix problems with recompilation.
* Removed from --help information about wrongly working "RoundCorners"
  option.
* Added menu entry.

Show diffs side-by-side

added added

removed removed

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