Add fix-gamepad.service

This commit is contained in:
askiiart 2024-03-18 20:53:52 -05:00
parent ce7abeb0e7
commit 4821d5b5e9
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
4 changed files with 20 additions and 1 deletions

View file

@ -0,0 +1,9 @@
[Unit]
Description=Fix the gamepad by adding an offset to the right stick
Type=simple
[Service]
ExecStart=/usr/bin/env bash -c 'while true; do /usr/bin/env evdev-joystick --e /dev/input/by-id/usb-ShanWan_Xbox360_For_Windows_10F36D6-event-joystick --minimum -32767 --maximum 0 --a 3; /usr/bin/env evdev-joystick --e /dev/input/by-id/usb-ShanWan_Xbox360_For_Windows_10F36D6-event-joystick --minimum 0 --maximum 32767 --a 4; sleep 5; done'
[Install]
WantedBy=multi-user.target