Improvement of weston.ini.man. Add key:shell and remove tablet-shell
[profile/ivi/weston-ivi-shell.git] / man / weston.ini.man
1 .\" shorthand for double quote that works everywhere.
2 .ds q \N'34'
3 .TH weston.ini 5 "2013-01-17" "Weston __version__"
4 .SH NAME
5 weston.ini \- configuration file for
6 .B Weston
7 \- the reference Wayland
8 compositor
9 .SH INTRODUCTION
10 .B Weston
11 obtains configuration from its command line parameters and the configuration
12 file described here.
13 .SH DESCRIPTION
14 .B Weston
15 uses a configuration file called
16 .I weston.ini
17 for its setup.
18 The
19 .I weston.ini
20 configuration file is searched for in one of the following places when the
21 server is started:
22 .PP
23 .RS 4
24 .nf
25 .BR "$XDG_CONFIG_HOME/weston.ini   " "(if $XDG_CONFIG_HOME is set)"
26 .BR "$HOME/.config/weston.ini      " "(if $HOME is set)"
27 .B  "weston/weston.ini in each"
28 .BR "\ \ \ \ $XDG_CONFIG_DIR           " "(if $XDG_CONFIG_DIRS is set)"
29 .BR "/etc/xdg/weston/weston.ini    " "(if $XDG_CONFIG_DIRS is not set)"
30 .BR "<current dir>/weston.ini      " "(if no variables were set)"
31 .fi
32 .RE
33 .PP
34 where environment variable
35 .B $HOME
36 is the user's home directory, and
37 .B $XDG_CONFIG_HOME
38 is the user specific configuration directory, and
39 .B $XDG_CONFIG_DIRS
40 is a colon
41 .B ':'
42 delimited listed of configuration base directories, such as
43 .BR /etc/xdg-foo:/etc/xdg .
44 .PP
45 The
46 .I weston.ini
47 file is composed of a number of sections which may be present in any order, or
48 omitted to use default configuration values. Each section has the form:
49 .PP
50 .RS 4
51 .nf
52 .BI [ SectionHeader ]
53 .RI Key1=Value1
54 .RI Key2=Value2
55     ...
56 .fi
57 .RE
58 .PP
59 The spaces are significant.
60 Comment lines are ignored:
61 .PP
62 .RS 4
63 .nf
64 .IR "#comment"
65 .fi
66 .RE
67 .PP
68 The section headers are:
69 .PP
70 .RS 4
71 .nf
72 .BR "core           " "The core modules"
73 .BR "shell          " "Desktop customization"
74 .BR "launcher       " "Add launcher to the panel"
75 .BR "screensaver    " "Screensaver selection"
76 .BR "output         " "Output configuration"
77 .BR "input-method   " "Onscreen keyboard input"
78 .BR "keyboard       " "Keyboard layouts"
79 .BR "terminal       " "Terminal application options"
80 .BR "xwayland       " "XWayland options"
81 .fi
82 .RE
83 .PP
84 Possible value types are string, signed and unsigned 32-bit
85 integer, and boolean. Strings must not be quoted, do not support any
86 escape sequences, and run till the end of the line. Integers can
87 be given in decimal (e.g. 123), octal (e.g. 0173), and hexadecimal
88 (e.g. 0x7b) form. Boolean values can be only 'true' or 'false'.
89 .RE
90 .SH "CORE SECTION"
91 The
92 .B core
93 section is used to select the startup compositor modules.
94 .TP 7
95 .BI "shell=" desktop-shell.so
96 specifies a shell to load (string). This can be used to load your own
97 implemented shell or one with Weston as default. Available shells
98 in the
99 .IR "__weston_modules_dir__"
100 directory are:
101 .PP
102 .RS 10
103 .nf
104 .BR desktop-shell.so
105 .fi
106 .RE
107 .TP 7
108 .TP 7
109 .BI "modules=" xwayland.so,cms-colord.so
110 specifies the modules to load (string). Available modules in the
111 .IR "__weston_modules_dir__"
112 directory are:
113 .PP
114 .RS 10
115 .nf
116 .BR xwayland.so
117 .BR cms-colord.so
118 .fi
119 .RE
120 .TP 7
121 .TP 7
122 .BI "backend=" headless-backend.so
123 overrides defaults backend. Available backend modules in the
124 .IR "__weston_modules_dir__"
125 directory are:
126 .PP
127 .RS 10
128 .nf
129 .BR drm-backend.so
130 .BR fbdev-backend.so
131 .BR headless-backend.so
132 .BR rdp-backend.so
133 .BR rpi-backend.so
134 .BR wayland-backend.so
135 .BR x11-backend.so
136 .fi
137 .RE
138 .BI "gbm-format="format
139 sets the GBM format used for the framebuffer for the GBM backend. Can be
140 .B xrgb8888,
141 .B xrgb2101010,
142 .B rgb565.
143 By default, xrgb8888 is used.
144 .RS
145 .PP
146
147 .SH "SHELL SECTION"
148 The
149 .B shell
150 section is used to customize the compositor. Some keys may not be handled by
151 different shell plugins.
152 .PP
153 The entries that can appear in this section are:
154 .TP 7
155 .BI "client=" file
156 sets the path for the shell client to run. If not specified
157 .I __weston_shell_client__
158 is launched (string).
159 .TP 7
160 .BI "background-image=" file
161 sets the path for the background image file (string).
162 .TP 7
163 .BI "background-type=" tile
164 determines how the background image is drawn (string). Can be
165 .BR scale ", " scale-crop " or " tile " (default)."
166 Scale means scaled to fit the output precisely, not preserving aspect ratio.
167 Scale-crop preserves aspect ratio, scales the background image just big
168 enough to cover the output, and centers it. The image ends up cropped from
169 left and right, or top and bottom, if the aspect ratio does not match the
170 output. Tile repeats the background image to fill the output.
171 .TP 7
172 .BI "background-color=" 0xAARRGGBB
173 sets the color of the background (unsigned integer). The hexadecimal
174 digit pairs are in order alpha, red, green, and blue.
175 .TP 7
176 .BI "panel-color=" 0xAARRGGBB
177 sets the color of the panel (unsigned integer). The hexadecimal
178 digit pairs are in order transparency, red, green, and blue. Examples:
179 .PP
180 .RS 10
181 .nf
182 .BR "0xffff0000    " "Red"
183 .BR "0xff00ff00    " "Green"
184 .BR "0xff0000ff    " "Blue"
185 .BR "0x00ffffff    " "Fully transparent"
186 .fi
187 .RE
188 .TP 7
189 .BI "locking=" true
190 enables screen locking (boolean).
191 .TP 7
192 .BI "animation=" zoom
193 sets the effect used for opening new windows (string). Can be
194 .B zoom,
195 .B fade,
196 .B none.
197 By default, no animation is used.
198 .TP 7
199 .BI "startup-animation=" fade
200 sets the effect used for opening new windows (string). Can be
201 .B fade,
202 .B none.
203 By default, the fade animation is used.
204 .TP 7
205 .BI "focus-animation=" dim-layer
206 sets the effect used with the focused and unfocused windows. Can be
207 .B dim-layer,
208 .B none.
209 By default, no animation is used.
210 .TP 7
211 .BI "binding-modifier=" ctrl
212 sets the modifier key used for common bindings (string), such as moving
213 surfaces, resizing, rotating, switching, closing and setting the transparency
214 for windows, controlling the backlight and zooming the desktop. Possible values:
215 ctrl, alt, super (default)
216 .TP 7
217 .BI "num-workspaces=" 6
218 defines the number of workspaces (unsigned integer). The user can switch
219 workspaces by using the
220 binding+F1, F2 keys. If this key is not set, fall back to one workspace.
221 .TP 7
222 .BI "cursor-theme=" theme
223 sets the cursor theme (string).
224 .TP 7
225 .BI "cursor-size=" 24
226 sets the cursor size (unsigned integer).
227 .TP 7
228 .BI "lockscreen-icon=" path
229 sets the path to lock screen icon image (string). (tablet shell only)
230 .TP 7
231 .BI "lockscreen=" path
232 sets the path to lock screen background image (string). (tablet shell only)
233 .TP 7
234 .BI "homescreen=" path
235 sets the path to home screen background image (string). (tablet shell only)
236 .RE
237 .SH "LAUNCHER SECTION"
238 There can be multiple launcher sections, one for each launcher.
239 .TP 7
240 .BI "icon=" icon
241 sets the path to icon image (string). Svg images are not currently supported.
242 .TP 7
243 .BI "path=" program
244 sets the path to the program that is run by clicking on this launcher (string).
245 It is possible to pass arguments and environment variables to the program. For
246 example:
247 .nf
248 .in +4n
249
250 path=GDK_BACKEND=wayland gnome-terminal --full-screen
251 .in
252 .fi
253 .PP
254 .RE
255 .SH "SCREENSAVER SECTION"
256 The
257 .B screensaver
258 section is used to select and schedule a screensaver.
259 The
260 .B screensaver
261 section is optional, as are all of the entries that may be specified in
262 it.
263 .TP 7
264 .BI "path=" /usr/libexec/weston-screensaver
265 This instructs the compositor to use the selected screensaver client on a given
266 path (string). If this line is missing or commented out, the screensaver in
267 .B "weston(1)"
268 is disabled.
269 .RE
270 .TP 7
271 .BI "duration=" 600
272 The idle time in seconds until the screensaver disappears in order to save power
273 (unsigned integer).
274 .SH "OUTPUT SECTION"
275 There can be multiple output sections, each corresponding to one output. It is
276 currently only recognized by the drm and x11 backends.
277 .TP 7
278 .BI "name=" name
279 sets a name for the output (string). The backend uses the name to
280 identify the output. All X11 output names start with a letter X.  All
281 Wayland output names start with the letters WL.  The available
282 output names for DRM backend are listed in the
283 .B "weston-launch(1)"
284 output.
285 Examples of usage:
286 .PP
287 .RS 10
288 .nf
289 .BR "LVDS1    " "DRM backend, Laptop internal panel no.1"
290 .BR "VGA1     " "DRM backend, VGA connector no.1"
291 .BR "X1       " "X11 backend, X window no.1"
292 .BR "WL1      " "Wayland backend, Wayland window no.1"
293 .fi
294 .RE
295 .RS
296 .PP
297 See
298 .B "weston-drm(7)"
299 for more details.
300 .RE
301 .TP 7
302 .BI "mode=" mode
303 sets the output mode (string). The mode parameter is handled differently
304 depending on the backend. On the X11 backend, it just sets the WIDTHxHEIGHT of
305 the weston window.
306 The DRM backend accepts different modes:
307 .PP
308 .RS 10
309 .nf
310 .BR "WIDTHxHEIGHT    " "Resolution size width and height in pixels"
311 .BR "preferred       " "Uses the preferred mode"
312 .BR "current         " "Uses the current crt controller mode"
313 .BR "off             " "Disables the output"
314 .fi
315 .RE
316 .RS
317 .PP
318 Optionally, an user may specify a modeline, such as:
319 .PP
320 .nf
321 .in +4n
322 .nf
323 173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
324 .fi
325 .in
326 .PP
327 It consists of the refresh rate in Hz, horizontal and vertical resolution,
328 options for horizontal and vertical synchronisation. The program
329 .B "cvt(1)"
330 can provide suitable modeline string.
331 .RE
332 .TP 7
333 .BI "transform=" normal
334 The transformation applied to screen output (string). The transform key can
335 be one of the following 8 strings:
336 .PP
337 .RS 10
338 .nf
339 .BR  "normal        " "Normal output."
340 .BR  "90            " "90 degrees clockwise."
341 .BR  "180           " "Upside down."
342 .BR  "270           " "90 degrees counter clockwise."
343 .BR  "flipped       " "Horizontally flipped"
344 .BR  "flipped-90    " "Flipped and 90 degrees clockwise"
345 .BR  "flipped-180   " "Flipped upside down"
346 .BR  "flipped-270   " "Flipped and 90 degrees counter clockwise"
347 .fi
348 .RE
349 .TP 7
350 .BI "seat=" name
351 The logical seat name that that this output should be associated with. If this
352 is set then the seat's input will be confined to the output that has the seat
353 set on it. The expectation is that this functionality will be used in a
354 multiheaded environment with a single compositor for multiple output and input
355 configurations. The default seat is called "default" and will always be
356 present. This seat can be constrained like any other.
357 .RE
358 .SH "INPUT-METHOD SECTION"
359 .TP 7
360 .BI "path=" "/usr/libexec/weston-keyboard"
361 sets the path of the on screen keyboard input method (string).
362 .RE
363 .RE
364 .SH "KEYBOARD SECTION"
365 This section contains the following keys:
366 .TP 7
367 .BI "keymap_rules=" "evdev"
368 sets the keymap rules file (string). Used to map layout and model to input
369 device.
370 .RE
371 .RE
372 .TP 7
373 .BI "keymap_model=" "pc105"
374 sets the keymap model (string). See the Models section in
375 .B "xkeyboard-config(7)."
376 .RE
377 .RE
378 .TP 7
379 .BI "keymap_layout=" "us,de,gb"
380 sets the comma separated list of keyboard layout codes (string). See the
381 Layouts section in
382 .B "xkeyboard-config(7)."
383 .RE
384 .RE
385 .TP 7
386 .BI "keymap_variant=" "euro,,intl"
387 sets the comma separated list of keyboard layout variants (string). The number
388 of variants must be the same as the number of layouts above. See the Layouts
389 section in
390 .B "xkeyboard-config(7)."
391 .RE
392 .RE
393 .TP 7
394 .BI "keymap_options=" "grp:alt_shift_toggle,grp_led:scroll"
395 sets the keymap options (string). See the Options section in
396 .B "xkeyboard-config(7)."
397 .RE
398 .RE
399 .SH "TERMINAL SECTION"
400 Contains settings for the weston terminal application (weston-terminal). It
401 allows to customize the font and shell of the command line interface.
402 .TP 7
403 .BI "font=" "DejaVu Sans Mono"
404 sets the font of the terminal (string). For a good experience it is recommended
405 to use monospace fonts. In case the font is not found, the default one is used.
406 .RE
407 .RE
408 .TP 7
409 .BI "font-size=" "14"
410 sets the size of the terminal font (unsigned integer).
411 .RE
412 .RE
413 .TP 7
414 .BI "term=" "xterm-256color"
415 The terminal shell (string). Sets the $TERM variable.
416 .RE
417 .RE
418 .SH "XWAYLAND SECTION"
419 .TP 7
420 .BI "path=" "/usr/bin/Xorg"
421 sets the path to the xserver to run (string).
422 .RE
423 .RE
424 .SH "SEE ALSO"
425 .BR weston (1),
426 .BR weston-launch (1),
427 .BR weston-drm (7),
428 .BR xkeyboard-config (7)