diff --git a/tune-mouse b/tune-mouse index f0faf18..222b501 100755 --- a/tune-mouse +++ b/tune-mouse @@ -3,7 +3,15 @@ tp_name="$(cat ~/.touchpad-name)" if [ "$tp_name" != none ]; then - xinput set-prop "$tp_name" "libinput Natural Scrolling Enabled" 1 + case "$(hostname)" in + mantel) + value=0 + ;; + *) + value=1 + ;; + esac + xinput set-prop "$tp_name" "libinput Natural Scrolling Enabled" "$value" fi if [ $# -eq 1 ]; then