A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 meson_options.txt

View raw Download
text/plain • 549 B
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