You are not logged in.
Pages: 1
Hi,
I was annoyed by the low scrolling speed in chromium. Besides following the excellent wiki from arch and installing autoscroll I tried to use Imwheel for increasing my scroll speed. It works however following the wiki my own created service does not start.
Using the steps in https://wiki.archlinux.org/index.php/IMWheel I created the systemd service but when I boot journalctl tells me
systemd[967]: imwheel.service: Main process exited, code=exited, status=1/FAILUREwhen running it from console the imwheel service starts and works, but with the following comment:
INFO: imwheel is not running as a daemon.How to solve this so that my service starts?
Last edited by Martine (2019-11-07 11:40:35)
Offline
This works for me:
[Unit]
Description=IMWheel
Wants=display-manager.service
After=display-manager.service
[Service]
Type=simple
Environment=XAUTHORITY=%h/.Xauthority
ExecStart=/usr/bin/imwheel -d -b 45
ExecStop=/usr/bin/pkill imwheel
RemainAfterExit=yes
Restart=on-failure
[Install]
WantedBy=graphical.targetOffline
Pages: 1