Now that classic styling is based on color scheme instead of a dedicated "classic" stylesheet, we should do the same for extension styling, with the bonus that it also works with the regular appearance setting outside the classic session. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/254>
13 lines
363 B
Meson
13 lines
363 B
Meson
extension_data += configure_file(
|
|
input: metadata_name + '.in',
|
|
output: metadata_name,
|
|
configuration: metadata_conf
|
|
)
|
|
extension_data += files(
|
|
'stylesheet-dark.css',
|
|
'stylesheet-light.css'
|
|
)
|
|
|
|
extension_sources += files('prefs.js', 'windowPicker.js', 'workspaceIndicator.js')
|
|
extension_schemas += files(metadata_conf.get('gschemaname') + '.gschema.xml')
|