I loaded then wbar and one shade appeared at the bottom screen, after loading aterm.tcz here goes the terminal icon,
then I loaded Xprog.tcz and full tinycore apparence is now shown.
I guess the question is whether to make Xprogs a dep of Xorg-7.7 or not?
My synaptics touchpad is not automaticaly full working (no vertical/horizontal scroll no two thingers scroll etc)
Did you load xf86-input-synaptics?
There is no problem with Xporgs, I only described my test process steps.
I forgot to load synaptics; but after I manualy loaded I have two fingers vertical scroll but is not working vertical/horizontal scroll:
I just need to know where/when to insert my 00-myXorg.conf. Also kmaps for fr-pc.kmap is OK in console just before X start but not in Xorg
Please help to make this file to be taken into account - keyboard and synaptics- it works in archlinux (it is a pain in **** with US keyboard to type here from opera9)
# Additional options may be added in the form of Option "OptionName" "value"
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
# Avoid add a device twice as /dev/input/eventX and as /dev/input/mou.
Section "InputClass"
Identifier "synaptics touchpad"
MatchIsTouchpad "on"
# avoid non-event (mouse) devices being assigned to synaptics.
MatchDevicePath "/dev/input/event*"
Driver "synaptics"
# tune up all my benefits:
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "SHMConfig" "1"
Option "VertEdgeScroll" "on"
Option "VertTwoFingerScroll" "on"
Option "HorizEdgeScroll" "on"
Option "HorizTwoFingerScroll" "on" Option "CircularScrolling" "on"
Option "CircScrollTrigger" "2"
Option "EmulateTwoFingerMinZ" "0"
#Option "EmulateWheel" "true"
#Option "EmulateWheelButton" "2"
#Option "Emulate3Buttons" "false"
#Option "XAxisMapping" "6 7"
#Option "YAxisMapping" "4 5"
#Option "ZAxisMapping" "4 5 6 7"
EndSection
# My mouse is here:
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# My keyboard is here:
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
#some extra keys, safe fallback is "pc105", list of models in /usr/share/X11/xkb/rules/xorg
Option "XkbModel" "inspiron"
#list my layouts, from /usr/share/X11/xkb/symbols/*
Option "XkbLayout" "fr" #variants for each of the layouts given in XkbLayoutm see in /usr/share/X11/xkb/symbols/<layout>
Option "XkbVariant" "azerty" #how switch layouts, what led notification, euro-sign
Option "XkbOptions" "terminate:ctrl_alt_bksp, grp:ctrls_toggle"
#extras in /usr/share/X11/xkb/rules/xorg
Option "XkbRules" "xorg"
EndSection
# Hm, not for my laptop...
Section "InputClass"
Identifier "evdev tablet catchall"
MatchIsTablet "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev touchscreen catchall"
MatchIsTouchscreen "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
# Collection of quirks and blacklist/whitelists for specific devices.
Section "InputClass"
Identifier "Sample accelerometer blacklist"
MatchProduct "ThinkPad HDAPS accelerometer data"
Option "Ignore" "on"
EndSection
Thank you