meson_options.txt
ASCII text
1
option(
2
'theme_name',
3
type: 'string',
4
value: 'Materia',
5
description: 'Set theme name',
6
)
7
8
option(
9
'colors',
10
type: 'array',
11
choices: ['default', 'light', 'dark'],
12
description: 'Choose color variant(s)',
13
)
14
15
option(
16
'sizes',
17
type: 'array',
18
choices: ['default', 'compact'],
19
description: 'Choose size variant(s)',
20
)
21
22
option(
23
'gnome_shell_version',
24
type: 'string',
25
description: 'Manually set gnome-shell version',
26
)
27
28
option(
29
'flatpak',
30
type: 'boolean',
31
value: false,
32
description: 'Build theme for flatpak package',
33
)
34