aLvArO ha scritto:nessuno mi sa aiutare a capire come mai il click sul touchpad non funziona?
odio usare il bottoncino mi stressa.
Sto scrivendo un piccolo wiki giusto ora, aspetta qualche minuto

Emanuele
Moderatore: Staff
aLvArO ha scritto:nessuno mi sa aiutare a capire come mai il click sul touchpad non funziona?
odio usare il bottoncino mi stressa.


aLvArO ha scritto:nessuno mi sa aiutare a capire come mai il click sul touchpad non funziona?
odio usare il bottoncino mi stressa.

bash-3.1$ synclient -l
Parameter settings:
LeftEdge = 1752
RightEdge = 5192
TopEdge = 1620
BottomEdge = 4236
FingerLow = 25
FingerHigh = 30
FingerPress = 255
MaxTapTime = 180
MaxTapMove = 221
MaxDoubleTapTime = 180
SingleTapTimeout = 180
ClickTime = 100
FastTaps = 0
EmulateMidButtonTime = 75
EmulateTwoFingerMinZ = 280
EmulateTwoFingerMinW = 7
VertScrollDelta = 100
HorizScrollDelta = 100
VertEdgeScroll = 1
HorizEdgeScroll = 0
CornerCoasting = 0
VertTwoFingerScroll = 1
HorizTwoFingerScroll = 0
MinSpeed = 0.4
MaxSpeed = 0.7
AccelFactor = 0.00995223
TrackstickSpeed = 40
EdgeMotionMinZ = 29
EdgeMotionMaxZ = 159
EdgeMotionMinSpeed = 1
EdgeMotionMaxSpeed = 401
EdgeMotionUseAlways = 0
UpDownScrolling = 1
LeftRightScrolling = 1
UpDownScrollRepeat = 1
LeftRightScrollRepeat = 1
ScrollButtonRepeat = 100
TouchpadOff = 0
GuestMouseOff = 0
LockedDrags = 0
LockedDragTimeout = 5000
RTCornerButton = 3
RBCornerButton = 2
LTCornerButton = 0
LBCornerButton = 0
TapButton1 = 1
TapButton2 = 2
TapButton3 = 3
ClickFinger1 = 1
ClickFinger2 = 1
ClickFinger3 = 1
CircularScrolling = 0
CircScrollDelta = 0.1
CircScrollTrigger = 0
CircularPad = 0
PalmDetect = 0
PalmMinWidth = 10
PalmMinZ = 199
CoastingSpeed = 0
PressureMotionMinZ = 29
PressureMotionMaxZ = 159
PressureMotionMinFactor = 1
PressureMotionMaxFactor = 1
GrabEventDevice = 1
bash-3.1$

synclient TapButton1=1<?xml version="1.0" encoding="ISO-8859-1"?>
<deviceinfo version="0.2">
<device>
<match key="info.capabilities" contains="input.touchpad">
<merge key="input.x11_options.HorizEdgeScroll" type="string">1</merge>
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.RTCornerButton" type="string">2</merge>
<merge key="input.x11_options.LTCornerButton" type="string">3</merge>
<merge key="input.x11_options.CornerCoasting" type="string">1</merge>
<merge key="input.x11_options.CircularScrolling" type="string">1</merge>
</match>
</device>
</deviceinfo>

Stai attento ma la cosa non è impossibile per niente...
aLvArO ha scritto:ragazzi io mi arrendo.
esiste un modo per tornare al vecchio xorg senza fare danni?
Section "ServerLayout"
Identifier "Simple Layout"
Screen "Screen 1" 0 0
EndSection
Section "Device"
# Insert Clocks lines here if appropriate
Identifier "VESA Framebuffer"
Driver "nvidia"
EndSection
Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"
DefaultDepth 24
Option "RenderAccel" "true"
Option "AllowGLXWithComposite" "true"
Option "XAANoOffscreenPixmaps" "true"
Option "AddARGBGLXVisuals" "true"
#VideoRam 4096
SubSection "Display"
Depth 24
Modes "1280x800" "1024x768" "800x600" "640x480"
EndSubSection
Section "Extensions"
Option "Composite" "Enable"
EndSection


spina ha scritto:Ma i residui erano relativi alla sezione del touchpad? Ci spieghi meglio? Cosa dovrei integrare al wiki?
Emanuele

Section "Device"
Identifier "Geffo 8400m G"
Driver "nvidia"
EndSection

waka_jawaka ha scritto:A me è andata veramente di c**o: tutto funzionante addirittura senza xorg.conf, tastiera, touchpad, mouse ecc. Ho creato un xorg.conf con solo
- Codice: Seleziona tutto
Section "Device"
Identifier "Geffo 8400m G"
Driver "nvidia"
EndSection
e nient'altro, per caricare i driver nvidia.
C'è solo un piccolo problema: la resa dei font è obbrobbriosa, quasi come ai tempi del mio primo linux (mandrake 5.3). Ho smanettato con le impostazioni dell'aliasing di kde, con freetype di serie o patchato, con e senza gli invidia proprietari, ma nada de nada. Le applicazioni kde sono quasi dignitose me quelle in gtk sono inguardabili.
http://img150.imageshack.us/img150/8639/schermata2.png
http://img196.imageshack.us/img196/6100/schermata1j.png
A voi come va?
#!/bin/sh
#
# install-msfonts - get and install MS Web Fonts
#
# Copyright (C) 2005 Fabio
#
mkdir -p /tmp/temp_webfonts
cd /tmp/temp_webfonts
FONTS_ZIP_=webfonts.tar.gz
URL_=http://fontconfig.org/webfonts
FONTS_PATH_=/usr/share/fonts/windows
mkdir -p $FONTS_PATH_
wget --tries=10 --progress=bar $URL_/$FONTS_ZIP_
# Extract original exe-zip
tar -xzf $FONTS_ZIP_
# Extract all fonts archives
for archive_exe in ./msfonts/*.exe ; do
if [ -f $archive_exe ]; then
cabextract $archive_exe
fi
done
unset archive_exe
# Copy all fonts in fonts path
cp -fv *.ttf $FONTS_PATH_
cp -fv *.TTF $FONTS_PATH_
rm -Rf /tmp/temp_webfonts
fc-cache -f
NOT_EMPTY_=`ls $FONTS_PATH_`
if [ "a$NOT_EMPTY_" != "a" ]; then
dialog --msgbox "I nuovi fonts sono in $FONTS_PATH_" 8 68
exit 0
else
dialog --msgbox "La directory $FONTS_PATH_ non contiene fonts.
Installazione fallita." 8 68
exit 1
fi
#echo .
#echo "Done ... now you must restart xfs font server (ex: service xfs
restart)"
#echo .
exit 0

aLvArO ha scritto:...
direi che almeno nel mio caso si deve eliminare completamente la sezione InputDevice dove ci stavano
le impostazioni del touchpad ovviamente.


spina ha scritto:aLvArO ha scritto:...
direi che almeno nel mio caso si deve eliminare completamente la sezione InputDevice dove ci stavano
le impostazioni del touchpad ovviamente.
Vorrei capire solo se le impostazioni era doppie, nel senso che erano presenti sia nel file di hal sia in xorg.conf. In pratica vorrei sapere se le info trovate nel file xrog.conf hanno la precedenza su quelle trovate nel file per hal.
Dalla discussione sulla tastiera mi è sembrato di capire che le informazioni per hal hanno la precedenze su quelle di xorg.conf, ecco perchè non ho scritto niente riguardo alla sezione InputDevice nella guida. Però se mi dici che nel tuo caso hanno avuto la precedenza quelle di xorg.conf allora andrebbe segnalato.
Emanuele

Complimenti ancora al team slackware 

Visitano il forum: Nessuno e 1 ospite