Tiny Core Base > TCB Talk

wlan and touchpad

(1/1)

SergeiAlekseev:
hello
1 How to connect to AP with ' in ESSID?


2 How to disable Synaptic's tap-to-click? That feature must be disabled by default i think.

Thank you and excuse me for my broken English.

Misalf:
I don't know about SSIDs containing single quotes. Can you connect from other devices? Have you tried connecting manually? The single quote might need proper escaping which the wifi.sh script maybe isn't aware of yet.

For the touch pad, you can create an Xorg config like this
/usr/local/share/X11/xorg.conf.d/50-synaptics.conf

--- Code: ---Section "InputClass"
    Identifier "touchpad"
    Driver "synaptics"
    MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "0"
        Option "TapButton3" "0"
        Option "VertEdgeScroll" "on"
        Option "VertTwoFingerScroll" "on"
        Option "HorizEdgeScroll" "off"
        Option "HorizTwoFingerScroll" "off"
EndSection

--- End code ---
Change
  Option "TapButton1" "1" 
to  0, off, or false .
Then add the file to your backup

--- Code: ---echo "usr/local/share/X11/xorg.conf.d/50-synaptics.conf" >> /opt/.filetool.lst
filetool.sh -b

--- End code ---

Misalf:
If the above config doesn't work, there's also that other driver for simpler touchpads. Stencil?

--- Code: ---Section "InputClass"
Identifier       "Touchpad Defaults"
Option           "SendCoreEvents"    "true"
Option           "SHMConfig"         "true"
Option           "Emulate3Buttons"   "on"
Option           "HorizEdgeScroll"   "0"
Option           "HorizScrollDelta"  "0"
EndSection

--- End code ---

Misalf:
Ah, yes

--- Code: ---### Touchpad - Sentelic Finger Sensing Pad
{ sleep 3
TOUCHPAD="/sys/devices/platform/i8042/serio1"
# Disable tap-to-click:
#[ -e "$TOUCHPAD"/setreg ] && echo -n "0x90 0x80" > "$TOUCHPAD"/setreg
##[ -e "$TOUCHPAD"/flags ] && echo -n "c" | tee "$TOUCHPAD"/flags >/dev/null 2>&1
# Disable vertical tap scrolling:
#[ -e "$TOUCHPAD"/vscroll ] && echo "0" | tee "$TOUCHPAD"/vscroll >/dev/null 2>&1
# Disable horizontal tap scrolling:
[ -e "$TOUCHPAD"/hscroll ] && echo "0" | tee "$TOUCHPAD"/hscroll >/dev/null 2>&1
} &

--- End code ---

patrikg:
I think you can edit the wifi.db file and add quotes round the ssid.
Something like this:


--- Code: (bash) ---nano /home/tc/wifi.db

"Satan's Net" password


--- End code ---

Navigation

[0] Message Index

Go to full version