[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
ksynaptics is obsolete and has been abandoned by its developers. As this is most likely a bug with ksynaptics itself and not with our packaging, this bug will not be fixed since ksynaptics is not present in any supported version since Kubuntu 6.10. ** Changed in: ksynaptics (Ubuntu) Status: Confirmed => Won't Fix -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Gabriel: After you moved svn.out to another path, did you have to do anything to change the code so it referenced it? (I've tried following all of this, but still, touchpad resets). Thanks, Anthony -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is subscribed to ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Nice workaround, francis. I had to drop the ${LINE// /} for $LINE, as it would not read it. Are you sure is the right regexp?, then I had to erase the blanks by hand, so I didn't run the whole file but just the couple of twicks I needed. I also changed the location of the svn.out file to somewhere else in my path, (/homefolder/scripts/) as kde kept opening the file every time it boots. -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
I've been experiencing exactly the same problem since I upgraded to Gutsy. MetaMorfoziS, your solution is great, but I decided to make it a little simpler. After running Ksynaptics to ensure that your touchpad is configured the way you want it, just run the command: synclient -l > svn.out And you have all of your settings in a text file. Now all you need to do is create a little batch script. I called it "set-touchpad" vim set-touchpad And just cut and paste the following: #!/bin/bash while read LINE ; do synclient ${LINE// /} done < svn.out This script will remove all of the spaces from your text file and then use it to reconfigure your touchpad by passing the settings back to synclient. Don't forget to make the script executable, and then put both files in ~/.kde/Autostart and you're set. chmod 755 set-touchpad cp set-touchpad svn.out ~/.kde/Autostart/ If you ever change your touchpad settings don't forget to create a new svn.out and to copy it to your Autostart directory. Thanks again to MetaMorfoziS for the inspiration! -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
I haev solved a problem, but this is only a WORKAROUND, and i waiting for the solution henceforward. So this is the solution: -- First, setup your touchpad well, to get it work as you want (scrolling, circular, tapping etc) I have solved it with php, because its easier (you can do with your localhost/remote webserver or by hand). So make a new.php that contains: $sor) if($n>0) { $sor = str_replace(' ','',$sor); print "synclient $sor"; } ?> Then: synclient -l > syn.out Then copy both to your web folder (the two file must be in the same folder), and run it from your browser. Save the output somewhere (as touch.sh) (if you have more than 1 user then /opt) chmod +x touch.sh and link it to your startup folder that is in kde located at: ~/.kde/Autostart (if you are alone on that machine you can just copy here, i had problems with linking "KDEinit not found blablabla") Here is what we doing before: my synclient -l: --- Parameter settings: LeftEdge = 1681 RightEdge= 5092 TopEdge = 1663 BottomEdge = 4158 FingerLow= 18 FingerHigh = 23 MaxTapTime = 352 MaxTapMove = 220 MaxDoubleTapTime = 180 SingleTapTimeout = 180 ClickTime= 100 FastTaps = 0 EmulateMidButtonTime = 75 VertScrollDelta = 104 HorizScrollDelta = 105 VertEdgeScroll = 1 HorizEdgeScroll = 1 VertTwoFingerScroll = 1 HorizTwoFingerScroll = 1 MinSpeed = 0.0822368 MaxSpeed = 0.197368 AccelFactor = 0.00164474 EdgeMotionMinZ = 30 EdgeMotionMaxZ = 160 EdgeMotionMinSpeed = 1 EdgeMotionMaxSpeed = 304 EdgeMotionUseAlways = 1 UpDownScrolling = 1 LeftRightScrolling = 1 UpDownRepeat = 1 LeftRightRepeat = 1 ScrollButtonRepeat = 100 TouchpadOff = 0 GuestMouseOff= 0 LockedDrags = 0 RTCornerButton = 2 RBCornerButton = 3 LTCornerButton = 0 LBCornerButton = 0 TapButton1 = 1 TapButton2 = 2 TapButton3 = 3 CircularScrolling= 1 CircScrollDelta = 0.149 CircScrollTrigger= 4 CircularPad = 0 PalmDetect = 1 PalmMinWidth = 10 PalmMinZ = 200 CoastingSpeed= 0 PressureMotionMinZ = 30 PressureMotionMaxZ = 160 PressureMotionMinFactor = 1 PressureMotionMaxFactor = 1 And php converts this to this: --- #!/bin/bash synclient LeftEdge=1681 synclient RightEdge=5092 synclient TopEdge=1663 synclient BottomEdge=4158 synclient FingerLow=18 synclient FingerHigh=23 synclient MaxTapTime=352 synclient MaxTapMove=220 synclient MaxDoubleTapTime=180 synclient SingleTapTimeout=180 synclient ClickTime=100 synclient FastTaps=0 synclient EmulateMidButtonTime=75 synclient VertScrollDelta=104 synclient HorizScrollDelta=105 synclient VertEdgeScroll=1 synclient HorizEdgeScroll=1 synclient VertTwoFingerScroll=1 synclient HorizTwoFingerScroll=1 synclient MinSpeed=0.0822368 synclient MaxSpeed=0.197368 synclient AccelFactor=0.00164474 synclient EdgeMotionMinZ=30 synclient EdgeMotionMaxZ=160 synclient EdgeMotionMinSpeed=1 synclient EdgeMotionMaxSpeed=304 synclient EdgeMotionUseAlways=1 synclient UpDownScrolling=1 synclient LeftRightScrolling=1 synclient UpDownRepeat=1 synclient LeftRightRepeat=1 synclient ScrollButtonRepeat=100 synclient TouchpadOff=0 synclient GuestMouseOff=0 synclient LockedDrags=0 synclient RTCornerButton=2 synclient RBCornerButton=3 synclient LTCornerButton=0 synclient LBCornerButton=0 synclient TapButton1=1 synclient TapButton2=2 synclient TapButton3=3 synclient CircularScrolling=1 synclient CircScrollDelta=0.149 synclient CircScrollTrigger=4 synclient CircularPad=0 synclient PalmDetect=1 synclient PalmMinWidth=10 synclient PalmMinZ=200 synclient CoastingSpeed=0 synclient PressureMotionMinZ=30 synclient PressureMotionMaxZ=160 synclient PressureMotionMinFactor=1 synclient PressureMotionMaxFactor=1 I hope it helps on many others like me:) -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Hi, Same problem here. Any change I make in ksynaptics (syndock) is totally ignored, even without rebooting. I tried deleting .kde/share/config/ksynapticsrc. This permit saving changes between two invocations during the same session, but old params come back after reboot. Can you all confirm that you upgrade from Feisty to Gutsy, and that it's not a fresh Gutsy install ? Yfff -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Same here Kubuntu Gutsy. I neve use my touchpad so I disable it but after each reboot it's active again, even though the KDE control panel claims it's still disabled. -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
I have the same problem. How it says brent ksynaptics worked perfect in feisty, and now after my dist-upgrade to gutsy (with the same configuraction in xorg.conf and in the ksynaptics options) the settings are not stored. After reboot i must configure it again. It is a little annoying. This is one part of my xorg.conf: Section "InputDevice" Identifier "Synaptics Touchpad" Driver "synaptics" Option "SendCoreEvents" "true" Option "Device" "/dev/psaux" Option "Protocol" "auto-dev" Option "LeftEdge" "1700" Option "RightEdge" "5300" Option "TopEdge" "1700" Option "BottomEdge" "4200" Option "FingerLow" "25" Option "FingerHigh" "30" Option "MaxTapTime" "180" Option "MaxTapMove" "220" Option "VertScrollDelta" "100" Option "HorizScrollDelta" "0" Option "MinSpeed" "0.09" Option "MaxSpeed" "0.18" Option "AccelFactor" "0.0015" Option "SHMConfig" "on" Option "tapbutton1" "0" EndSection As you can see i have "SHMConfig" "on" option -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
For me the option is saved until I reboot. After a reboot tapping is enabled regardless of the setting, so I then have to enter the options, enable tapping, then disable tapping and 'apply', the problem will then be gone until the next time I reboot. I'm running Kubuntu 7.10 rc. -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Same problem here. -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
I'm having this problem with gutsy, but had no problems at all with feisty. No idea why. -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
I will confirm as it does look like the same issue as Bug 22419 ** Changed in: ksynaptics (Ubuntu) Importance: Undecided => Low Status: Unconfirmed => Confirmed -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 109586] Re: Touchpad configuration (ksynaptics) has no (permanent) effect
Some useful info, relaese is: Ubuntu 7.04, 2.6.20-15-generic #2 SMP Sun Apr 15 06:17:24 UTC 2007 x86_64 GNU/Linux -- Touchpad configuration (ksynaptics) has no (permanent) effect https://bugs.launchpad.net/bugs/109586 You received this bug notification because you are a member of Kubuntu Team, which is a bug contact for ksynaptics in ubuntu. -- kubuntu-bugs mailing list [EMAIL PROTECTED] https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs