A fork of the Materia GTK theme.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 meson_options.txt

View raw Download
text/plain • 693 B
ASCII text
        
            
1
option(
2
'theme_name',
3
type: 'string',
4
value: 'Materia',
5
description: 'Base theme name',
6
)
7
8
option(
9
'colors',
10
type: 'array',
11
choices: ['default', 'light', 'dark'],
12
description: 'List of color variants to build',
13
)
14
15
option(
16
'sizes',
17
type: 'array',
18
choices: ['default', 'compact'],
19
description: 'List of size variants to build',
20
)
21
22
option(
23
'gnome_shell_version',
24
type: 'string',
25
description: 'Build GNOME Shell theme for specific version',
26
)
27
28
option(
29
'gtk4_version',
30
type: 'string',
31
description: 'Build GTK 4 theme for specific version',
32
)
33
34
option(
35
'flatpak',
36
type: 'boolean',
37
value: false,
38
description: 'Whether to build theme for flatpak package',
39
)
40