tune-mouse: allow switch to ignore natural scrolling

This commit is contained in:
Nico Schottelius 2023-07-17 10:21:45 +02:00
parent 9ee820cda6
commit ab7a09caa3
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
#!/bin/sh
xinput set-prop "$(cat ~/.touchpad-name)" "libinput Natural Scrolling Enabled" 1
tp_name="$(cat ~/.touchpad-name)"
if [ "$tp_name" != none ]; then
xinput set-prop "$tp_name" "libinput Natural Scrolling Enabled" 1
fi
if [ $# -eq 1 ]; then
display=$1