tune-mouse: allow switch to ignore natural scrolling
This commit is contained in:
parent
9ee820cda6
commit
ab7a09caa3
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue