mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 12:05:59 +01:00
16 lines
670 B
Meson
16 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') )
|