Après être passé par Ubuntu et Debian, chacun avec leurs défauts, je me suis tourné vers Arch. Bon pas trop de soucis d'installation, sauf pour Xorg que je n'arrive pas à passer en azerty. Sur tty et GDM c'est en qwerty, une fois loggué sur Gnome c'est en azerty. Ca ne me dérangeait pas jusque là, mais je souhaite passer à i3wm par soucis d'économie d'énergie (et de stabilité avec Arch...). Sauf que ce dernier prend la config de Xorg même une fois loggué...
J'ai donc suivi le tuto sur le Wiki, ayant Xorg > 1.6 ma config se trouve dans /usr/share/X11/xorg.conf.d/ Ici j'ai trouvé plusieurs fichier, le plus petit étant 10-evdev.conf, que j'ai modifié en suivant le tuto, ce qui donne :
Code : Tout sélectionner
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.
Section "InputClass"
Identifier "evdev pointer catchall"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
Section "InputClass"
Identifier "evdev keyboard catchall"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "fr"
Option "XkbVariant" "oss"
EndSection
Section "InputClass"
Identifier "evdev touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
EndSection
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
Je suis donc bloqué et c'est pour cela que je fais appel à vous...
Merci d'avance !