#!/bin/sh if synclient -l | grep -q TouchpadOff[^[:alnum:]]*0 ; then synclient TouchpadOff=1 status="TouchPad OFF" notify-send "Touchpad aus !" -t 2000 else synclient TouchpadOff=0 status="TouchPad ON" notify-send "Touchpad ein !" -t 2000 fi #Doppelklick aktivieren synclient TapButton1=1 #Scrollen aktivieren synclient VertEdgeScroll=1 exit 0