← Back to team overview

ubuntu-x-swat team mailing list archive

[Bug 449208] Re: touchpad tap-to-click response delayed .5 seconds

 

Oh, yeah, and I use zsh, and this is the definition for syn:

Feel free to adjust it for what you want.  It's more a function to clean
up the CLI behavior of the synaptics utility by being able to blow off
all the mixed capitalization (POOR FORM, GUY) in the variable names, and
search for names if you don't know the exact right thing.  I got tired
of typing | fgrep whatever.

syn () {
	local -a argArray
	local blob
	blob=$(synclient -l) 
	[ -n "$1" ] || {
		echo $blob
		return
	}
	while [ $argv[1] ]
	do
		argArray[1]=$argv[1] 
		argArray[2]=$argv[2] 
		argv[1]=() 
		if [ ! $argArray[2] ]
		then
			echo $blob | fgrep -i "$argArray[1]"
		else
			argv[1]=() 
			argArray[1]=$(echo $blob | grep -iP "\s${argArray[1]}\s" \
                    | awk '{print $1}') 
			[ $argArray[1] ] && synclient "$argArray[1]=$argArray[2]" || echo "couldn't find that setting"
		fi
	done
}

-- 
You received this bug notification because you are a member of Ubuntu-X,
which is subscribed to xserver-xorg-input-synaptics in Ubuntu.
https://bugs.launchpad.net/bugs/449208

Title:
  touchpad tap-to-click response delayed .5 seconds

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/449208/+subscriptions


References