Rename schemas, make it easier to override in other packages

This commit is contained in:
Joshua Strobl 2023-08-27 15:02:44 +03:00
parent 9afdda8e25
commit e9d53d9d5d
3 changed files with 6 additions and 6 deletions

View file

@ -4,11 +4,11 @@ schemas = [
'org.buddiesofbudgie.budgie-desktop-view.gschema.override', 'org.buddiesofbudgie.budgie-desktop-view.gschema.override',
] ]
custom_target('90_budgie_settings.gschema.override', custom_target('10_budgie_org_settings.gschema.override',
capture: true, capture: true,
command: ['cat', '@INPUT@'], command: ['cat', '@INPUT@'],
input: schemas, input: schemas,
install_dir: path_schema, install_dir: path_schema,
install: true, install: true,
output: '90_budgie_settings.gschema.override', output: '10_budgie_org_settings.gschema.override',
) )

View file

@ -3,11 +3,11 @@ schemas = [
'org.gnome.gedit.preferences.editor.gschema.override', 'org.gnome.gedit.preferences.editor.gschema.override',
] ]
custom_target('90_budgie_gnome_settings.gschema.override', custom_target('10_budgie_org_gnome_settings.gschema.override',
capture: true, capture: true,
command: ['cat', '@INPUT@'], command: ['cat', '@INPUT@'],
input: schemas, input: schemas,
install_dir: path_schema, install_dir: path_schema,
install: true, install: true,
output: '90_budgie_gnome_settings.gschema.override', output: '10_budgie_org_gnome_settings.gschema.override',
) )

View file

@ -2,11 +2,11 @@ schemas = [
'x.dm.slick-greeter.gschema.override', 'x.dm.slick-greeter.gschema.override',
] ]
custom_target('90_budgie_lightdm.gschema.override', custom_target('10_budgie_org_lightdm.gschema.override',
capture: true, capture: true,
command: ['cat', '@INPUT@'], command: ['cat', '@INPUT@'],
input: schemas, input: schemas,
install_dir: path_schema, install_dir: path_schema,
install: true, install: true,
output: '90_budgie_lightdm.gschema.override', output: '10_budgie_org_lightdm.gschema.override',
) )