2023-02-22 13:23:21 +0000
Add a new systemd service:
sudo vim /etc/systemd/system/disable-touchpad-pm.service
With the following content:
[Unit]
Description=disables Acer aspire v3 572g touchpad PM to work around input delays
[Service]
Type=oneshot
ExecStart=/bin/sh -c "echo on > /sys/bus/i2c/devices/i2c-0/device/power/control"
[Install]
WantedBy=multi-user.target
then execute
sudo systemctl daemon-reload && sudo systemctl enable disable-touchpad-pm