4 * Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com>
6 * Permission is hereby granted, free of charge, to any person obtaining
7 * a copy of this software and associated documentation files
8 * (the "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sublicense, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 * This includes global data for the whole kmscon application. For instance,
28 * global parameters can be accessed via this header.
38 struct kmscon_conf_t {
39 /* show help/usage information */
41 /* exit application after parsing options */
43 /* enable debug messages */
45 /* enable verbose info messages */
47 /* disable notices and warnings */
49 /* VT number to run on on seat0 */
51 /* enter new VT directly */
53 /* use framebuffers instead of DRM */
55 /* use dumb DRM devices */
60 /* input KBD layout */
64 unsigned int xkb_repeat_delay;
65 unsigned int xkb_repeat_rate;
69 /* custom login process */
71 /* argv for login process */
73 /* terminal scroll-back buffer size */
76 struct conf_grab *grab_scroll_up;
77 /* scroll-down grab */
78 struct conf_grab *grab_scroll_down;
80 struct conf_grab *grab_page_up;
82 struct conf_grab *grab_page_down;
91 unsigned int font_size;
94 /* font ppi (overrides per monitor PPI) */
95 unsigned int font_ppi;
100 /* frame-rate limit */
102 /* print rendering engine timing information */
106 extern struct kmscon_conf_t kmscon_conf;
108 #endif /* KMSCON_MAIN_H */