Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

I was able to get the Apple Magic Trackpad working on Fedora 15 KDE 4.6. (I previously got it working on Linux Mint.)

However, the settings -- particularly activating the single-finger left click and double-finger right click -- seem to reset after each user session.

Does anybody know how to retain these settings between sessions?

EDIT: When I turn on the computer and then activate the trackpad, then the settings do not load. However, when I logout and login, the settings load. That suggests to me that, since the trackpad is already active before login, its settings are successfully modified upon login. But when the trackpad is not active before login, then the default settings are meaningless because there is no trackpad to set.

Therefore, is there a way to register the settings after the trackpad is recognized by Bluetooth?

share|improve this question

1 Answer

Usually these settings would be set in the driver section of xorg.conf.

Section "InputDevice"
    Identifier     "Appletouch"
    Driver         "drivername"
    Option         "optionname" "value"
EndSection

For some systems there is also a client program that can set these values after X is running. For example synaptic touchpads have a configuration tool that you can change the various properties on the fly. I have actually taken to running that as part of my login script instead of setting it in X because it is easier to tweak.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.