input-remapper/data/input-remapper.service
Raman Gupta 2c5a4d71f2
Add RequiresMountsFor=/var/log to systemd unit (#369)
If anyone mounts `/var` from a separate filesystem, this will ensure that `/var/log/input-remapper-control` is not written before `/var`/ is mounted.
2022-04-15 13:31:43 +02:00

16 lines
365 B
Desktop File

[Unit]
Description=Service to inject keycodes without the GUI application
# dbus is required for ipc between gui and input-remapper-control
Requires=dbus.service
After=dbus.service
RequiresMountsFor=/var/log
[Service]
Type=dbus
BusName=inputremapper.Control
ExecStart=/usr/bin/input-remapper-service
[Install]
WantedBy=default.target
Alias=input-remapper.service