mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 09:46:00 +01:00
f3f7d3629a
Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
15 lines
670 B
Meson
15 lines
670 B
Meson
install_data(
|
|
'hyprland-systemd.desktop',
|
|
install_dir: join_paths(get_option('datadir'), 'wayland-sessions'),
|
|
install_tag: 'runtime',
|
|
)
|
|
|
|
conf_data = configuration_data()
|
|
conf_data.set('PREFIX', get_option('prefix'))
|
|
conf_data.set('BINDIR', get_option('bindir'))
|
|
|
|
configure_file(
|
|
configuration: conf_data,
|
|
input: 'hyprland-session.service.in',
|
|
output: '@BASENAME@',
|
|
install_dir: join_paths(get_option('libdir'), 'systemd/user') )
|