dotfiles/dot_config/i3/bin/executable_toggletouchpad.sh

6 lines
119 B
Bash
Raw Normal View History

2023-03-04 12:37:36 +00:00
if synclient -l | grep "TouchpadOff .*=.*0" ; then
synclient TouchpadOff=1 ;
else
synclient TouchpadOff=0 ;
fi