Advertisement
Guest User

Untitled

a guest
Apr 1st, 2018
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.33 KB | None | 0 0
  1. #!/bin/bash
  2. #This turns the touchpad left-click off and on. This is to be used for a keyboard shortcut (not to start with your computer. Use the other script called for that (to turn off touchpad cicks at startup).
  3.  
  4. if synclient -l | egrep "TapButton1.*= *0"
  5. then
  6.     synclient TapButton1=1
  7. else
  8.     synclient TapButton1=0
  9. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement