diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2018-07-29 12:16:54 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2018-07-29 12:16:54 -0400 |
| commit | 580a6f6c31a072cee0c97aed58fe13ce8e9ff5a6 (patch) | |
| tree | 376de8e9ca5dae5ecaad856ceede3449a421a41f /.scripts | |
| parent | abdfebe38ab1334298cc8dd22e77c2a74123aabc (diff) | |
| download | eibhear-580a6f6c31a072cee0c97aed58fe13ce8e9ff5a6.tar.gz eibhear-580a6f6c31a072cee0c97aed58fe13ce8e9ff5a6.tar.zst eibhear-580a6f6c31a072cee0c97aed58fe13ce8e9ff5a6.zip | |
toggle touchpad binding and fixes
Diffstat (limited to '.scripts')
| -rwxr-xr-x | .scripts/toggletouchpad | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.scripts/toggletouchpad b/.scripts/toggletouchpad new file mode 100755 index 0000000..bbb4110 --- /dev/null +++ b/.scripts/toggletouchpad @@ -0,0 +1,4 @@ +#!/bin/bash +# Toggle touchpad. Requires xf86-input-synaptics. +(synclient | grep TouchpadOff.*1 && synclient TouchpadOff=0)>/dev/null && echo "TouchPad reactivated." && exit +synclient TouchpadOff=1 && echo "TouchPad deactivated." |
