1
0
Fork 0
ryzowanie/local/bin/scroll_high_res_off

15 lines
237 B
Text
Raw Normal View History

2024-06-11 21:55:28 +02:00
#!/bin/sh
#
# Turn off High Resolution Wheel Scroll
#
IDX=$(xinput list | grep "Performance MX" | awk '{print $6}' | cut -d "=" -f 2)
for id in $IDX
do
xinput set-prop $id 'libinput High Resolution Wheel Scroll Enabled' 0
done