6 lines
189 B
Bash
6 lines
189 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
. "../../Config/KDE/input.sh";
|
||
|
addInputConfig "1118" "2338" "Microsoft Surface Keyboard Touchpad" "NaturalScroll=true";
|
||
|
popd > /dev/null;
|