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
'gtk4_version',
24
type: 'string',
25
description: 'Manually set gtk4 version',
26
)
27
28
option(
29
'gnome_shell_version',
30
type: 'string',
31
description: 'Manually set gnome-shell version',
32
)
33
34
option(
35
'flatpak',
36
type: 'boolean',
37
value: false,
38
description: 'Build theme for flatpak package',
39
)
40