diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2023-09-22 10:13:44 -0500 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2023-09-22 10:13:44 -0500 |
commit | 6cf13aeebf0d2c6c396ff230578101cbd5c0494f (patch) | |
tree | cd71aa87598dbf7db1c4d4256ccf727df2c81b31 /x11/xprofile.T495 | |
parent | 3dfa7eb9a3855e91868fd8be028ce9115d91e189 (diff) | |
download | dotconfig-6cf13aeebf0d2c6c396ff230578101cbd5c0494f.tar.xz dotconfig-6cf13aeebf0d2c6c396ff230578101cbd5c0494f.zip |
skipconfig option and fix trackpoint and trackpad settings to be more readable
Diffstat (limited to 'x11/xprofile.T495')
-rwxr-xr-x | x11/xprofile.T495 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11/xprofile.T495 b/x11/xprofile.T495 index 0eb2d0c..f472fa5 100755 --- a/x11/xprofile.T495 +++ b/x11/xprofile.T495 @@ -1,4 +1,7 @@ #!/bin/sh -xinput --set-prop 13 308 -0.5 # make trackpoint accelerate less -xinput --set-prop 12 308 0.3 # make trackpad accelerate more -xinput --set-prop 12 298 0 # don't disable trackpad while typing +# xinput --list +# xinput --list-props <device> +# xinput --set-prop <device> <prop> <value> +xinput --set-prop "TPPS/2 Elan TrackPoint" "libinput Accel Speed" -0.5 # make trackpoint accelerate less +xinput --set-prop "SynPS/2 Synaptics TouchPad" "libinput Accel Speed" 0.3 # make trackpad accelerate more +xinput --set-prop "SynPS/2 Synaptics TouchPad" "libinput Disable While Typing Enabled" 0 # don't disable trackpad while typing |