forked from colemickens/platform2-sommelier
-
Notifications
You must be signed in to change notification settings - Fork 3
/
meson_options.txt
45 lines (38 loc) · 1 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
option('xwayland_path',
type: 'string',
value: '/usr/bin/Xwayland',
description: 'path to Xwayland'
)
option('xwayland_gl_driver_path',
type: 'string',
value: '/usr/lib/dri',
description: 'the GL driver path to use for Xwayland'
)
option('xwayland_shm_driver',
type: 'string',
value: 'virtwl',
description: 'shm driver to use for Xwayland'
)
option('shm_driver',
type: 'string',
value: 'virtwl-dmabuf',
description: 'shm driver to use for wayland clients'
)
option('frame_color',
type: 'string',
value: '#f2f2f2',
description: 'frame color to use for Xwayland clients'
)
option('dark_frame_color',
type: 'string',
value: '#323639',
description: 'dark frame color to use for Xwayland clients'
)
option('peer_cmd_prefix',
type: 'string',
value: '',
description: 'command-line needed to spwan non-master sommeliers'
)