1
0
Fork 0
ryzowanie/local/bin/scroll_high_res_off
2024-06-11 21:55:28 +02:00

14 lines
237 B
Bash
Executable file

#!/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