dotfiles/.config/i3/script/toggletouchpad.sh

7 lines
131 B
Bash
Executable File

#!/bin/bash
if synclient -l | grep "TouchpadOff .*=.*0" ; then
synclient TouchpadOff=1 ;
else
synclient TouchpadOff=0 ;
fi