28045074aa
The <super>1-9 shortcuts to activate dash favorites were a feature from Ubuntu's Unity that caused some distress as the same shortcuts were used by some users to activate workspaces. Registering the new shortcuts with control-center at least gives those users a GUI option for resolving the conflict. https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/1250 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1797>
134 lines
3.4 KiB
Meson
134 lines
3.4 KiB
Meson
desktop_files = [
|
|
'org.gnome.Shell.desktop',
|
|
'org.gnome.Shell.Extensions.desktop',
|
|
]
|
|
service_files = []
|
|
|
|
if have_networkmanager
|
|
desktop_files += 'org.gnome.Shell.PortalHelper.desktop'
|
|
service_files += 'org.gnome.Shell.PortalHelper.service'
|
|
endif
|
|
|
|
desktopconf = configuration_data()
|
|
# We substitute in bindir so it works as an autostart
|
|
# file when built in a non-system prefix
|
|
desktopconf.set('bindir', bindir)
|
|
desktopconf.set('systemd_hidden', have_systemd ? 'true' : 'false')
|
|
|
|
foreach desktop_file : desktop_files
|
|
i18n.merge_file('desktop',
|
|
input: configure_file(
|
|
input: desktop_file + '.in.in',
|
|
output: desktop_file + '.in',
|
|
configuration: desktopconf
|
|
),
|
|
output: desktop_file,
|
|
po_dir: po_dir,
|
|
install: true,
|
|
install_dir: desktopdir,
|
|
type: 'desktop'
|
|
)
|
|
endforeach
|
|
|
|
serviceconf = configuration_data()
|
|
serviceconf.set('libexecdir', libexecdir)
|
|
foreach service_file : service_files
|
|
configure_file(
|
|
input: service_file + '.in',
|
|
output: service_file,
|
|
configuration: serviceconf,
|
|
install_dir: servicedir
|
|
)
|
|
endforeach
|
|
|
|
theme_deps = []
|
|
|
|
subdir('dbus-interfaces')
|
|
subdir('icons')
|
|
subdir('theme')
|
|
|
|
data_resources = [
|
|
['dbus-interfaces', []],
|
|
['osk-layouts', []],
|
|
['theme', theme_deps]
|
|
]
|
|
foreach resource : data_resources
|
|
gnome.compile_resources(
|
|
'gnome-shell-' + resource[0],
|
|
'gnome-shell-@0@.gresource.xml'.format(resource[0]),
|
|
source_dir: resource[0],
|
|
dependencies: resource[1],
|
|
gresource_bundle: true,
|
|
install: true,
|
|
install_dir: pkgdatadir
|
|
)
|
|
endforeach
|
|
|
|
perfconf = configuration_data()
|
|
perfconf.set('datadir', datadir)
|
|
configure_file(
|
|
input: 'perf-background.xml.in',
|
|
output: 'perf-background.xml',
|
|
configuration: perfconf,
|
|
install_dir: pkgdatadir
|
|
)
|
|
|
|
keybinding_files = [
|
|
'50-gnome-shell-launchers.xml',
|
|
'50-gnome-shell-system.xml',
|
|
]
|
|
|
|
install_data('gnome-shell.portal', install_dir: portaldir)
|
|
install_data(keybinding_files, install_dir: keysdir)
|
|
|
|
|
|
schemaconf = configuration_data()
|
|
schemaconf.set('GETTEXT_PACKAGE', meson.project_name())
|
|
schema = configure_file(
|
|
input: 'org.gnome.shell.gschema.xml.in',
|
|
output: 'org.gnome.shell.gschema.xml',
|
|
configuration: schemaconf,
|
|
install_dir: schemadir
|
|
)
|
|
install_data('00_org.gnome.shell.gschema.override', install_dir: schemadir)
|
|
|
|
overrides_migration_conf = configuration_data()
|
|
overrides_migration_conf.set('libexecdir', libexecdir)
|
|
overrides_migration = configure_file(
|
|
input: 'gnome-shell-overrides-migration.desktop.in',
|
|
output: 'gnome-shell-overrides-migration.desktop',
|
|
configuration: overrides_migration_conf,
|
|
install_dir: autostartdir
|
|
)
|
|
|
|
if have_systemd
|
|
unitconf = configuration_data()
|
|
unitconf.set('bindir', bindir)
|
|
|
|
configure_file(
|
|
input: 'org.gnome.Shell@x11.service.in',
|
|
output: 'org.gnome.Shell@x11.service',
|
|
configuration: unitconf,
|
|
install_dir: systemduserunitdir
|
|
)
|
|
|
|
configure_file(
|
|
input: 'org.gnome.Shell@wayland.service.in',
|
|
output: 'org.gnome.Shell@wayland.service',
|
|
configuration: unitconf,
|
|
install_dir: systemduserunitdir
|
|
)
|
|
|
|
units = files('org.gnome.Shell.target',
|
|
'org.gnome.Shell-disable-extensions.service')
|
|
|
|
install_data(units, install_dir: systemduserunitdir)
|
|
endif
|
|
|
|
# for unit tests - gnome.compile_schemas() only looks in srcdir
|
|
custom_target('compile-schemas',
|
|
input: schema,
|
|
output: 'gschemas.compiled',
|
|
command: [find_program('glib-compile-schemas'), meson.current_build_dir()],
|
|
build_by_default: true)
|