Does anybody know where qsynaptic and the matching kcmodule has has gone? Or is there an other way to configure a synapic touchpad?
Nik
On 10/12/11 11:13, Mag. Dr. Nikolaus Klepp wrote:
Does anybody know where qsynaptic and the matching kcmodule has has gone? Or is there an other way to configure a synapic touchpad?
Nik
(As root):
apt-get install xserver-xorg-input-synaptics
(As user):
cat > ~/.trinity/Autostart/synaptics.sh <<EOF #!/bin/bash
# user script to enable touchpad
synclient TapButton1=1 LBCornerButton=2 RBCornerButton=3 MaxTapTime=140 SingleTapTimeout=140 MaxDoubleTapTime=140
EOF
chmod 755 ~/.trinity/Autostart/synaptics.sh
#start it now ~/.trinity/Autostart/synaptics.sh
# will autostart on next login
Am Samstag, 10. Dezember 2011 schrieb David Hare:
On 10/12/11 11:13, Mag. Dr. Nikolaus Klepp wrote:
Does anybody know where qsynaptic and the matching kcmodule has has gone? Or is there an other way to configure a synapic touchpad?
Nik
(As root):
apt-get install xserver-xorg-input-synaptics
(As user):
cat > ~/.trinity/Autostart/synaptics.sh <<EOF #!/bin/bash
# user script to enable touchpad
synclient TapButton1=1 LBCornerButton=2 RBCornerButton=3 MaxTapTime=140 SingleTapTimeout=140 MaxDoubleTapTime=140
EOF
chmod 755 ~/.trinity/Autostart/synaptics.sh
#start it now ~/.trinity/Autostart/synaptics.sh
# will autostart on next login
oh yes, that works. I placed it in /etc/X11/xorg.comf-d/synaptic.conf. Now the remaining problem is that the mouse sometimes jumps ~200px when I initiate a mouse move. Looks like a driver problem.
Nik
On 10/12/11 14:34, Mag. Dr. Nikolaus Klepp wrote:
Am Samstag, 10. Dezember 2011 schrieb David Hare:
On 10/12/11 11:13, Mag. Dr. Nikolaus Klepp wrote:
Does anybody know where qsynaptic and the matching kcmodule has has gone? Or is there an other way to configure a synapic touchpad?
Nik
(As root):
apt-get install xserver-xorg-input-synaptics
(As user):
cat> ~/.trinity/Autostart/synaptics.sh<<EOF #!/bin/bash
# user script to enable touchpad
synclient TapButton1=1 LBCornerButton=2 RBCornerButton=3 MaxTapTime=140 SingleTapTimeout=140 MaxDoubleTapTime=140
EOF
chmod 755 ~/.trinity/Autostart/synaptics.sh
#start it now ~/.trinity/Autostart/synaptics.sh
# will autostart on next login
oh yes, that works. I placed it in /etc/X11/xorg.comf-d/synaptic.conf. Now the remaining problem is that the mouse sometimes jumps ~200px when I initiate a mouse move. Looks like a driver problem.
Nik
I meant, you can do that with a userscript in autostart, you don't have to use xorg.conf
<man synclient> gives info to adjust settings, mine are just what work for me.
Just made a fresh Installation of TDE 3.5.13 on Debian Wheezy. Anything works fine, but there are 2 gotchas:
1) ksmserver-trinity is on war with dpkg-divert:
dpkg-divert: Fehler: »Umleitung von /usr/bin/plasma zu /usr/bin/plasma.kde4 durch ksmserver-trinity« kollidiert mit »lokale Umleitung von /usr/bin/plasma zu /usr/bin/plasma.kde4« dpkg: Fehler beim Bearbeiten von /var/cache/apt/archives/ksmserver-trinity_4%3a3.5.13-0debian9+r1261450+pr19~squeeze_i386.deb (--unpack): Unterprozess neues pre-installation-Skript gab den Fehlerwert 2 zurück Fehler traten auf beim Bearbeiten von: /var/cache/apt/archives/ksmserver-trinity_4%3a3.5.13-0debian9+r1261450+pr19~squeeze_i386.deb
I can work around that by doing temprarily replacing "dpkg-divert" with "echo" (don't forget to put it in place again later). Not very sophisticated, but works.
2) libqt3-mt from Wheezy is choosen over TDE:
Wheezy: 3.3.8b-11 TDE: 33.8d-0ubuntu0+sr73+pr181~squeeze
So Debian's package wins against TDEs. Later in the game TDE starts with blue screen or failes to start with some errors like this, which are caused by the wrong qt3 lib:
/opt/trinity/bin/kdeinit: symbol lookup error: /opt/trinity/lib/libDCOP.so.4: undefined symbol: _ZN7QObject21objectTreesListObjectEv
Just install libqt3-mt from TDE and anything is fine:
# apt-get install -t squeeze libqt3-mt
Nik