service file: allow for waybar installed in different prefix
This commit is contained in:
parent
a0a3c01e79
commit
f152ad9fa9
|
@ -66,8 +66,13 @@ systemd = dependency('systemd', required: get_option('systemd'))
|
||||||
|
|
||||||
if systemd.found()
|
if systemd.found()
|
||||||
user_units_dir = systemd.get_pkgconfig_variable('systemduserunitdir')
|
user_units_dir = systemd.get_pkgconfig_variable('systemduserunitdir')
|
||||||
install_data('./resources/waybar.service',
|
|
||||||
install_dir: user_units_dir)
|
configure_file(
|
||||||
|
configuration: config,
|
||||||
|
input: './resources/waybar.service.in',
|
||||||
|
output: '@BASENAME@',
|
||||||
|
install_dir: user_units_dir
|
||||||
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
src_files = files(
|
src_files = files(
|
||||||
|
|
|
@ -6,7 +6,7 @@ PartOf=wayland-session.target
|
||||||
[Service]
|
[Service]
|
||||||
Type=dbus
|
Type=dbus
|
||||||
BusName=fr.arouillard.waybar
|
BusName=fr.arouillard.waybar
|
||||||
ExecStart=/usr/bin/waybar
|
ExecStart=@prefix@/bin/waybar
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=wayland-session.target
|
WantedBy=wayland-session.target
|
Loading…
Reference in New Issue