snaums<p>For your pleasure: <a href="https://toot.kif.rocks/tags/xinput" class="mention hashtag" rel="tag">#<span>xinput</span></a> <a href="https://toot.kif.rocks/tags/X11" class="mention hashtag" rel="tag">#<span>X11</span></a> <a href="https://toot.kif.rocks/tags/Linux" class="mention hashtag" rel="tag">#<span>Linux</span></a> <a href="https://toot.kif.rocks/tags/NaturalScrolling" class="mention hashtag" rel="tag">#<span>NaturalScrolling</span></a></p><p>```<br />#!/bin/bash<br />value=1<br />xinput<br />id=$(xinput | grep "Mouse" | awk '{ print $6 }' | sed -r 's/.*=([0-9]*)/\1/g')<br />xinput list-props $id<br />natscroll=$(xinput list-props $id | grep "Natural Scrolling Enabled (" | sed -r 's/.*\(([0-9]*)\).*/\1/g')<br />echo "Setting Device $id, prop $natscroll to $value"<br />xinput set-prop $id $natscroll $value<br />```</p>