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

View raw Download
text/plain • 544 B
ASCII text
        
            
1
foreach theme: themes
2
index_theme_conf = configuration_data()
3
index_theme_conf.set('theme_name', theme['name'])
4
5
index_theme = configure_file(
6
input: 'index.theme.in',
7
output: '@0@.index.theme'.format(theme['name']),
8
configuration: index_theme_conf,
9
)
10
11
install_data(
12
index_theme,
13
rename: 'index.theme',
14
install_dir: theme['dir'],
15
)
16
endforeach
17
18
subdir('cinnamon')
19
subdir('gnome-shell')
20
subdir('gtk-2.0')
21
subdir('gtk-3.0')
22
subdir('gtk-4.0')
23
subdir('metacity-1')
24
subdir('plank')
25
subdir('unity')
26
subdir('xfwm4')
27