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.build

View raw Download
text/plain • 528 B
ASCII text
        
            
1
foreach theme: themes
2
gtk2_dir = join_paths(theme['dir'], 'gtk-2.0')
3
4
if theme['color'] != '-dark'
5
gtk2_assets_dir = 'assets'
6
else
7
gtk2_assets_dir = 'assets-dark'
8
endif
9
10
install_subdir(
11
gtk2_assets_dir,
12
strip_directory: true,
13
install_dir: join_paths(gtk2_dir, 'assets'),
14
)
15
16
install_data(
17
'gtkrc' + theme['color'],
18
rename: 'gtkrc',
19
install_dir: gtk2_dir,
20
)
21
22
install_data(
23
[
24
'apps.rc',
25
'hacks.rc',
26
'main.rc',
27
],
28
install_dir: gtk2_dir,
29
)
30
endforeach
31