Page 1 sur 1

[Xorg + KDE] modifier DPI

Publié : mer. 09 juil. 2014, 09:20
par llaqmataqui
Bonjour,
Je travaille sous kde mais celui-ci ne me propose pas de résolution qui me convienne (1600x900).
J'ai donc ajouté un fichier 10-monitor.conf dans /etc/X11/xorg.conf.d dont voici le contenu :

Code : Tout sélectionner

Section "Monitor"
    Identifier     "eDP1"
    Modeline       "1600x900_60.00"  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync
    Option         "PreferredMode"  "1600x900_60.00"
EndSection
Le problème est qu'au démarrage de chaque session kde remet mon ancienne résolution (1920x1080).
Y a t'il un moyen pour que kde prenne en compte ma nouvelle résolution spécifiée par xorg ?

Merci d'avance.

EDIT : la meilleure façon de faire semble être de modifier le DPI. Le problème est que le DPI spécifié depuis xorg n'est pas pris en compte et que celui spécifié à partir des préférences de KDE ne s'applique pas aux applications utilisant gtk.
D'autres idées pour modifier le DPI de manière globale ?

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 10:00
par Moviuro
Plop

Déjà, quelle idée de mettre une résolution plus basse que celle du moniteur ? ^_^ (c'est pas à moi de juger, je trouve ça juste étrange : si c'est parce que les truc apparaissent trop petit, ça peut se gérer autrement, avec le DPI).

KDE gère les résolutions dans systemsettings : Affichage et moniteurs. Dedans, tu devrais être capable de changer la résolution pour que ça soit celle que tu veux.

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 10:11
par llaqmataqui
Kde ne me propose pas la résolution 1600x900.

Une résolution de 1920x1080 sur un 13 pouces c'est vraiment petit.
Si je peux m'en sortir sans modifier la résolution je suis preneur.
Comment je peux faire avec le DPI ?

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 10:28
par benjarobin
Je confirme que c'est une très mauvaise idée de jouer sur la résolution, le DPI est fait pour cela.
https://wiki.archlinux.org/index.php/xo ... ze_and_DPI

Code : Tout sélectionner

Section "Monitor"
    Identifier             "Monitor0"
	Option                 "UseEdidDpi" "False"
    Option                 "DPI" "168 x 168"
EndSection
Tu peux tester aussi via : xrandr --dpi 168

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 10:45
par llaqmataqui
J'ai testé ceci mais xorg n'en tient pas compte, comme précisé dans le wiki :
The factual accuracy of this article or section is disputed.
Reason: Xorg always sets dpi to 96.
Fichier 10-monitor.conf :

Code : Tout sélectionner

Section "Monitor"
    Identifier             "eDP1"
   Option                 "UseEdidDpi" "False"
    Option                 "DPI" "168 x 168"
EndSection
Et :

Code : Tout sélectionner

xdpyinfo | grep -B2 resolution
screen #0:
  dimensions:    1920x1080 pixels (508x285 millimeters)
  resolution:    96x96 dots per inch

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 10:55
par Moviuro
systemsettings > Apparence des applications > Fontes de polices > Forcer le DPI des fontes

Puis logout/login puis (normalement), ça devrait aller ;)

Perso, j'ai un 18.4" en 120DPI et

Code : Tout sélectionner

% xdpyinfo|grep -B2 resolution
screen #0:
  dimensions:    1920x1080 pixels (508x285 millimeters)
  resolution:    96x96 dots per inch
Donc KDE se fout royalement de X. (Et oui, clairement, j'ai du 120 DPI)

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 12:35
par llaqmataqui
Ça marche mais j'ai l'impression que les applications gtk ne prenne pas en compte ce paramètre.

Par exemple avec chromium il n'y a pas de différence sur le contenu des pages.

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 13:13
par benjarobin
Car ce n'est pas la bonne méthode. La bonne méthode est normalement via Xorg...
Cela ne fonctionne pas via xrandr --dpi 168 ?

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 13:28
par Moviuro
llaqmataqui a écrit :gtk
Voilà :lol:
Pour chrome et chromium, j'ai changé les tailles de police par défaut. Par contre si tu utilises d'autres applications gtk, je ne saurai pas t'aider. Je vais attendre de voir ce que proposent les autres (et fixer le souci sur tous mes PCs :) ).

Re: [Xorg] résolution par défaut

Publié : mer. 09 juil. 2014, 13:31
par llaqmataqui
La commande

Code : Tout sélectionner

xrandr --dpi 168
n'a aucun effet.

Re: [Xorg + KDE] modifier DPI

Publié : jeu. 10 juil. 2014, 09:04
par llaqmataqui
Car ce n'est pas la bonne méthode. La bonne méthode est normalement via Xorg...
Ça marche chez toi ?

Tu peux poster le contenu de ton fichier de configuration xorg ?

Re: [Xorg + KDE] modifier DPI

Publié : jeu. 10 juil. 2014, 21:21
par benjarobin
En faite tout dépend du driver vidéo, je t'avais donné le code pour une carte nvidia avec les pilotes propriétaires, mais avec une carte intel, il faut faire ceci :

Code : Tout sélectionner

Section "Monitor"
        Identifier   "Monitor0"
        #Option       "DPI" "168 x 168"
        DisplaySize  231 131 # En mm
EndSection

Section "Screen"
        Identifier   "Screen0"
        Monitor      "Monitor0"
EndSection
Pour le DisplaySize, tu tests différentes valeurs et tu regardes le log de Xorg pour savoir quel DPI il utilise. De plus c'est mieux quand le DPI est le même en horizontal comme en vertical.
Au plus tu met une surface petite(en mm), au plus l'affichage sera gros.

Re: [Xorg + KDE] modifier DPI

Publié : ven. 11 juil. 2014, 09:10
par llaqmataqui
Cette fois-ci les réglages de xorg sont pris en compte, mais uniquement par les applications qt.

Les applications gtk ne sont pas impactées par les réglages de xorg.

Re: [Xorg + KDE] modifier DPI

Publié : ven. 11 juil. 2014, 09:35
par benjarobin
Intéressant, peux tu me faire une petite liste d'application qui pose souci ? Je regarderai de mon coté.
Et tant que l'on y est peux tu me donner aussi le log de Xorg ?

Re: [Xorg + KDE] modifier DPI

Publié : ven. 11 juil. 2014, 09:53
par llaqmataqui
Par exemple, firefox et chromium affiche les pages en 1920x1080 sans tenir compte des réglages de Xorg.

Le log de Xorg :

Code : Tout sélectionner

[  4530.844] 
X.Org X Server 1.15.2
Release Date: 2014-06-27
[  4530.844] X Protocol Version 11, Revision 0
[  4530.844] Build Operating System: Linux 3.15.1-1-ARCH x86_64 
[  4530.844] Current Operating System: Linux vaio 3.15.4-1-ARCH #1 SMP PREEMPT Mon Jul 7 07:42:54 CEST 2014 x86_64
[  4530.844] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/mapper/VolGroup0-root:root:allow-discards root=/dev/mapper/root rw initrd=../initramfs-linux.img
[  4530.844] Build Date: 27 June 2014  07:32:26PM
[  4530.844]  
[  4530.844] Current version of pixman: 0.32.6
[  4530.844]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  4530.844] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  4530.844] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 11 09:50:11 2014
[  4530.844] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  4530.844] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  4530.845] (==) No Layout section.  Using the first Screen section.
[  4530.845] (==) No screen section available. Using defaults.
[  4530.845] (**) |-->Screen "Default Screen Section" (0)
[  4530.845] (**) |   |-->Monitor "<default monitor>"
[  4530.845] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[  4530.845] (==) Automatically adding devices
[  4530.845] (==) Automatically enabling devices
[  4530.845] (==) Automatically adding GPU devices
[  4530.845] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  4530.845]    Entry deleted from font path.
[  4530.845] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  4530.845]    Entry deleted from font path.
[  4530.845]    (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  4530.845] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  4530.845]    Entry deleted from font path.
[  4530.845]    (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  4530.845] (==) FontPath set to:
        /usr/share/fonts/misc/,
        /usr/share/fonts/TTF/,
        /usr/share/fonts/Type1/
[  4530.845] (==) ModulePath set to "/usr/lib/xorg/modules"
[  4530.845] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[  4530.845] (II) Loader magic: 0x811cc0
[  4530.845] (II) Module ABI versions:
[  4530.845]    X.Org ANSI C Emulation: 0.4
[  4530.845]    X.Org Video Driver: 15.0
[  4530.845]    X.Org XInput driver : 20.0
[  4530.845]    X.Org Server Extension : 8.0
[  4530.845] (II) xfree86: Adding drm device (/dev/dri/card0)
[  4530.845] (II) xfree86: Adding drm device (/dev/dri/card1)
[  4530.848] (--) PCI:*(0:0:2:0) 8086:0126:104d:9084 rev 9, Mem @ 0xd0000000/4194304, 0xa0000000/268435456, I/O @ 0x0000a000/64
[  4530.848] (--) PCI: (0:22:0:0) 1002:6740:104d:9084 rev 0, Mem @ 0xb0000000/268435456, 0xc0200000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
[  4530.849] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  4530.849] Initializing built-in extension Generic Event Extension
[  4530.849] Initializing built-in extension SHAPE
[  4530.849] Initializing built-in extension MIT-SHM
[  4530.849] Initializing built-in extension XInputExtension
[  4530.849] Initializing built-in extension XTEST
[  4530.849] Initializing built-in extension BIG-REQUESTS
[  4530.849] Initializing built-in extension SYNC
[  4530.849] Initializing built-in extension XKEYBOARD
[  4530.849] Initializing built-in extension XC-MISC
[  4530.849] Initializing built-in extension SECURITY
[  4530.849] Initializing built-in extension XINERAMA
[  4530.849] Initializing built-in extension XFIXES
[  4530.849] Initializing built-in extension RENDER
[  4530.849] Initializing built-in extension RANDR
[  4530.849] Initializing built-in extension COMPOSITE
[  4530.849] Initializing built-in extension DAMAGE
[  4530.849] Initializing built-in extension MIT-SCREEN-SAVER
[  4530.849] Initializing built-in extension DOUBLE-BUFFER
[  4530.849] Initializing built-in extension RECORD
[  4530.849] Initializing built-in extension DPMS
[  4530.849] Initializing built-in extension Present
[  4530.849] Initializing built-in extension DRI3
[  4530.849] Initializing built-in extension X-Resource
[  4530.849] Initializing built-in extension XVideo
[  4530.849] Initializing built-in extension XVideo-MotionCompensation
[  4530.849] Initializing built-in extension XFree86-VidModeExtension
[  4530.849] Initializing built-in extension XFree86-DGA
[  4530.849] Initializing built-in extension XFree86-DRI
[  4530.849] Initializing built-in extension DRI2
[  4530.849] (II) "glx" will be loaded by default.
[  4530.849] (II) LoadModule: "dri2"
[  4530.849] (II) Module "dri2" already built-in
[  4530.849] (II) LoadModule: "glamoregl"
[  4530.849] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[  4530.850] (II) Module glamoregl: vendor="X.Org Foundation"
[  4530.850]    compiled for 1.15.0, module version = 0.6.0
[  4530.850]    ABI class: X.Org ANSI C Emulation, version 0.4
[  4530.850] (II) LoadModule: "glx"
[  4530.850] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  4530.850] (II) Module glx: vendor="X.Org Foundation"
[  4530.850]    compiled for 1.15.2, module version = 1.0.0
[  4530.850]    ABI class: X.Org Server Extension, version 8.0
[  4530.850] (==) AIGLX enabled
[  4530.850] Loading extension GLX
[  4530.850] (==) Matched intel as autoconfigured driver 0
[  4530.850] (==) Matched ati as autoconfigured driver 1
[  4530.850] (==) Matched intel as autoconfigured driver 2
[  4530.850] (==) Matched modesetting as autoconfigured driver 3
[  4530.850] (==) Matched fbdev as autoconfigured driver 4
[  4530.850] (==) Matched vesa as autoconfigured driver 5
[  4530.850] (==) Assigned the driver to the xf86ConfigLayout
[  4530.850] (II) LoadModule: "intel"
[  4530.850] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  4530.851] (II) Module intel: vendor="X.Org Foundation"
[  4530.851]    compiled for 1.15.1, module version = 2.99.912
[  4530.851]    Module class: X.Org Video Driver
[  4530.851]    ABI class: X.Org Video Driver, version 15.0
[  4530.851] (II) LoadModule: "ati"
[  4530.851] (WW) Warning, couldn't open module ati
[  4530.851] (II) UnloadModule: "ati"
[  4530.851] (II) Unloading ati
[  4530.851] (EE) Failed to load module "ati" (module does not exist, 0)
[  4530.851] (II) LoadModule: "modesetting"
[  4530.851] (WW) Warning, couldn't open module modesetting
[  4530.851] (II) UnloadModule: "modesetting"
[  4530.851] (II) Unloading modesetting
[  4530.851] (EE) Failed to load module "modesetting" (module does not exist, 0)
[  4530.851] (II) LoadModule: "fbdev"
[  4530.851] (WW) Warning, couldn't open module fbdev
[  4530.851] (II) UnloadModule: "fbdev"
[  4530.851] (II) Unloading fbdev
[  4530.851] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  4530.851] (II) LoadModule: "vesa"
[  4530.851] (WW) Warning, couldn't open module vesa
[  4530.851] (II) UnloadModule: "vesa"
[  4530.851] (II) Unloading vesa
[  4530.851] (EE) Failed to load module "vesa" (module does not exist, 0)
[  4530.851] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
        i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
        915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
        Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
        GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[  4530.851] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
[  4530.851] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
[  4530.851] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
[  4530.851] (++) using VT number 7

[  4530.857] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20080730
[  4530.857] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[  4530.857] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
[  4530.857] (II) intel(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[  4530.857] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  4530.857] (==) intel(0): RGB weight 888
[  4530.857] (==) intel(0): Default visual is TrueColor
[  4530.858] (**) intel(0): Framebuffer tiled
[  4530.858] (**) intel(0): Pixmaps tiled
[  4530.858] (**) intel(0): Forcing per-crtc-pixmaps? no
[  4530.858] (II) intel(0): Output eDP1 using monitor section eDP1
[  4530.858] (--) intel(0): Found backlight control interface acpi_video1 (type 'firmware') for output eDP1
[  4530.858] (II) intel(0): Output VGA1 has no monitor section
[  4530.858] (II) intel(0): Output HDMI1 has no monitor section
[  4530.858] (II) intel(0): Output DP1 has no monitor section
[  4530.858] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[  4530.858] (II) intel(0): Output VIRTUAL1 has no monitor section
[  4530.858] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
[  4530.858] (**) intel(0): TearFree disabled
[  4530.858] (==) intel(0): DPI set to (96, 96)
[  4530.858] (II) Loading sub module "dri3"
[  4530.858] (II) LoadModule: "dri3"
[  4530.858] (WW) Warning, couldn't open module dri3
[  4530.858] (II) UnloadModule: "dri3"
[  4530.858] (II) Unloading dri3
[  4530.858] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
[  4530.858] (II) Loading sub module "dri2"
[  4530.858] (II) LoadModule: "dri2"
[  4530.858] (II) Module "dri2" already built-in
[  4530.858] (II) Loading sub module "present"
[  4530.858] (II) LoadModule: "present"
[  4530.858] (WW) Warning, couldn't open module present
[  4530.858] (II) UnloadModule: "present"
[  4530.858] (II) Unloading present
[  4530.858] (EE) intel: Failed to load module "present" (module does not exist, 0)
[  4530.858] (==) Depth 24 pixmap format is 32 bpp
[  4530.859] (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
[  4530.859] (==) intel(0): Backing store enabled
[  4530.859] (==) intel(0): Silken mouse enabled
[  4530.859] (II) intel(0): HW Cursor enabled
[  4530.859] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  4530.859] (==) intel(0): DPMS enabled
[  4530.859] (II) intel(0): [DRI2] Setup complete
[  4530.859] (II) intel(0): [DRI2]   DRI driver: i965
[  4530.859] (II) intel(0): [DRI2]   VDPAU driver: i965
[  4530.859] (II) intel(0): direct rendering: DRI2 enabled
[  4530.859] (==) intel(0): hotplug detection: "enabled"
[  4530.859] (--) RandR disabled
[  4530.869] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  4530.869] (II) AIGLX: enabled GLX_ARB_create_context
[  4530.869] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  4530.869] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[  4530.869] (II) AIGLX: enabled GLX_INTEL_swap_event
[  4530.869] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  4530.869] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  4530.869] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  4530.869] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  4530.869] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  4530.869] (II) AIGLX: Loaded and initialized i965
[  4530.869] (II) GLX: Initialized DRI2 GL provider for screen 0
[  4530.872] (II) intel(0): switch to mode 1920x1080@59.9 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  4530.893] (II) intel(0): Setting screen physical size to 294 x 165
[  4530.947] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[  4530.947] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  4530.947] (II) LoadModule: "evdev"
[  4530.947] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  4530.947] (II) Module evdev: vendor="X.Org Foundation"
[  4530.947]    compiled for 1.15.1, module version = 2.9.0
[  4530.947]    Module class: X.Org XInput Driver
[  4530.947]    ABI class: X.Org XInput driver, version 20.0
[  4530.947] (II) Using input driver 'evdev' for 'Video Bus'
[  4530.947] (**) Video Bus: always reports core events
[  4530.947] (**) evdev: Video Bus: Device: "/dev/input/event3"
[  4530.947] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  4530.947] (--) evdev: Video Bus: Found keys
[  4530.947] (II) evdev: Video Bus: Configuring as keyboard
[  4530.947] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:09/input/input3/event3"
[  4530.947] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[  4530.947] (**) Option "xkb_rules" "evdev"
[  4530.947] (**) Option "xkb_model" "pc104"
[  4530.947] (**) Option "xkb_layout" "us"
[  4530.975] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event6)
[  4530.975] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
[  4530.975] (II) Using input driver 'evdev' for 'Sony Vaio Keys'
[  4530.975] (**) Sony Vaio Keys: always reports core events
[  4530.975] (**) evdev: Sony Vaio Keys: Device: "/dev/input/event6"
[  4530.975] (--) evdev: Sony Vaio Keys: Vendor 0x104d Product 0
[  4530.975] (--) evdev: Sony Vaio Keys: Found keys
[  4530.975] (II) evdev: Sony Vaio Keys: Configuring as keyboard
[  4530.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input7/event6"
[  4530.975] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD, id 7)
[  4530.975] (**) Option "xkb_rules" "evdev"
[  4530.975] (**) Option "xkb_model" "pc104"
[  4530.976] (**) Option "xkb_layout" "us"
[  4530.976] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event7)
[  4530.976] (II) No input driver specified, ignoring this device.
[  4530.976] (II) This device may have been added with another device file.
[  4530.976] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse1)
[  4530.976] (II) No input driver specified, ignoring this device.
[  4530.976] (II) This device may have been added with another device file.
[  4530.976] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[  4530.976] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  4530.976] (II) Using input driver 'evdev' for 'Video Bus'
[  4530.976] (**) Video Bus: always reports core events
[  4530.976] (**) evdev: Video Bus: Device: "/dev/input/event2"
[  4530.976] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  4530.976] (--) evdev: Video Bus: Found keys
[  4530.976] (II) evdev: Video Bus: Configuring as keyboard
[  4530.976] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1e/device:1f/device:22/device:23/device:24/LNXVIDEO:00/input/input2/event2"
[  4530.976] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[  4530.976] (**) Option "xkb_rules" "evdev"
[  4530.976] (**) Option "xkb_model" "pc104"
[  4530.976] (**) Option "xkb_layout" "us"
[  4530.977] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  4530.977] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  4530.977] (II) Using input driver 'evdev' for 'Power Button'
[  4530.977] (**) Power Button: always reports core events
[  4530.977] (**) evdev: Power Button: Device: "/dev/input/event1"
[  4530.977] (--) evdev: Power Button: Vendor 0 Product 0x1
[  4530.977] (--) evdev: Power Button: Found keys
[  4530.977] (II) evdev: Power Button: Configuring as keyboard
[  4530.977] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  4530.977] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[  4530.977] (**) Option "xkb_rules" "evdev"
[  4530.977] (**) Option "xkb_model" "pc104"
[  4530.977] (**) Option "xkb_layout" "us"
[  4530.977] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  4530.977] (II) No input driver specified, ignoring this device.
[  4530.977] (II) This device may have been added with another device file.
[  4530.977] (II) config/udev: Adding drm device (/dev/dri/card0)
[  4530.978] (II) config/udev: Adding input device USB2.0 Camera (/dev/input/event14)
[  4530.978] (**) USB2.0 Camera: Applying InputClass "evdev keyboard catchall"
[  4530.978] (II) Using input driver 'evdev' for 'USB2.0 Camera'
[  4530.978] (**) USB2.0 Camera: always reports core events
[  4530.978] (**) evdev: USB2.0 Camera: Device: "/dev/input/event14"
[  4530.978] (--) evdev: USB2.0 Camera: Vendor 0x5c8 Product 0x318
[  4530.978] (--) evdev: USB2.0 Camera: Found keys
[  4530.978] (II) evdev: USB2.0 Camera: Configuring as keyboard
[  4530.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.3/3-1.3:1.0/input/input15/event14"
[  4530.978] (II) XINPUT: Adding extended input device "USB2.0 Camera" (type: KEYBOARD, id 10)
[  4530.978] (**) Option "xkb_rules" "evdev"
[  4530.978] (**) Option "xkb_model" "pc104"
[  4530.978] (**) Option "xkb_layout" "us"
[  4530.978] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[  4530.978] (II) No input driver specified, ignoring this device.
[  4530.978] (II) This device may have been added with another device file.
[  4530.978] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
[  4530.978] (II) No input driver specified, ignoring this device.
[  4530.978] (II) This device may have been added with another device file.
[  4530.978] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
[  4530.978] (II) No input driver specified, ignoring this device.
[  4530.978] (II) This device may have been added with another device file.
[  4530.979] (II) config/udev: Adding drm device (/dev/dri/card1)
[  4530.979] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event8)
[  4530.979] (II) No input driver specified, ignoring this device.
[  4530.979] (II) This device may have been added with another device file.
[  4530.979] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/event5)
[  4530.979] (**) Logitech Gaming Mouse G400: Applying InputClass "evdev pointer catchall"
[  4530.979] (II) Using input driver 'evdev' for 'Logitech Gaming Mouse G400'
[  4530.979] (**) Logitech Gaming Mouse G400: always reports core events
[  4530.979] (**) evdev: Logitech Gaming Mouse G400: Device: "/dev/input/event5"
[  4530.979] (--) evdev: Logitech Gaming Mouse G400: Vendor 0x46d Product 0xc245
[  4530.979] (--) evdev: Logitech Gaming Mouse G400: Found 12 mouse buttons
[  4530.979] (--) evdev: Logitech Gaming Mouse G400: Found scroll wheel(s)
[  4530.979] (--) evdev: Logitech Gaming Mouse G400: Found relative axes
[  4530.979] (--) evdev: Logitech Gaming Mouse G400: Found x and y relative axes
[  4530.979] (II) evdev: Logitech Gaming Mouse G400: Configuring as mouse
[  4530.979] (II) evdev: Logitech Gaming Mouse G400: Adding scrollwheel support
[  4530.979] (**) evdev: Logitech Gaming Mouse G400: YAxisMapping: buttons 4 and 5
[  4530.979] (**) evdev: Logitech Gaming Mouse G400: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  4530.979] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.2/6-1.2:1.0/0003:046D:C245.0001/input/input6/event5"
[  4530.979] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G400" (type: MOUSE, id 11)
[  4530.979] (II) evdev: Logitech Gaming Mouse G400: initialized for relative axes.
[  4530.979] (**) Logitech Gaming Mouse G400: (accel) keeping acceleration scheme 1
[  4530.979] (**) Logitech Gaming Mouse G400: (accel) acceleration profile 0
[  4530.979] (**) Logitech Gaming Mouse G400: (accel) acceleration factor: 2.000
[  4530.979] (**) Logitech Gaming Mouse G400: (accel) acceleration threshold: 4
[  4530.980] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/mouse0)
[  4530.980] (II) No input driver specified, ignoring this device.
[  4530.980] (II) This device may have been added with another device file.
[  4530.980] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  4530.980] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  4530.980] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  4530.980] (**) AT Translated Set 2 keyboard: always reports core events
[  4530.980] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  4530.980] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  4530.980] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  4530.980] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  4530.980] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  4530.980] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[  4530.980] (**) Option "xkb_rules" "evdev"
[  4530.980] (**) Option "xkb_model" "pc104"
[  4530.980] (**) Option "xkb_layout" "us"
[  4530.980] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event13)
[  4530.980] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[  4530.980] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[  4530.980] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[  4530.980] (II) LoadModule: "synaptics"
[  4530.980] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  4530.981] (II) Module synaptics: vendor="X.Org Foundation"
[  4530.981]    compiled for 1.15.1, module version = 1.8.0
[  4530.981]    Module class: X.Org XInput Driver
[  4530.981]    ABI class: X.Org XInput driver, version 20.0
[  4530.981] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[  4530.981] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  4530.981] (**) Option "Device" "/dev/input/event13"
[  4531.116] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5768 (res 66)
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4748 (res 66)
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[  4531.116] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[  4531.116] (**) Option "FingerLow" "40"
[  4531.116] (**) Option "FingerHigh" "45"
[  4531.116] (**) Option "HorizEdgeScroll" "on"
[  4531.116] (**) Option "HorizTwoFingerScroll" "on"
[  4531.116] (**) Option "TapButton1" "1"
[  4531.116] (**) Option "TapButton2" "3"
[  4531.116] (**) Option "TapButton3" "0"
[  4531.117] (**) Option "CoastingSpeed" "0"
[  4531.117] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[  4531.117] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  4531.117] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  4531.196] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input14/event13"
[  4531.196] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
[  4531.196] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  4531.196] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[  4531.196] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
[  4531.197] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[  4531.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[  4531.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[  4531.197] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[  4531.197] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  4531.197] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
[  4531.198] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[  4531.198] (II) config/udev: Adding input device PC Speaker (/dev/input/event12)
[  4531.198] (II) No input driver specified, ignoring this device.
[  4531.198] (II) This device may have been added with another device file.
[  4536.303] (II) intel(0): EDID vendor "MS_", prod id 37
[  4536.303] (II) intel(0): Using EDID range info for horizontal sync
[  4536.303] (II) intel(0): Using EDID range info for vertical refresh
[  4536.303] (II) intel(0): Printing DDC gathered Modelines:
[  4536.303] (II) intel(0): Modeline "1920x1080"x0.0  162.84  1920 1952 1984 2481  1080 1083 1086 1095 -hsync -vsync (65.6 kHz eP)
[  4536.303] (II) intel(0): Modeline "1920x1080"x0.0   99.91  1920 1952 1984 2281  1080 1083 1086 1095 -hsync -vsync (43.8 kHz e)
[  4536.303] (II) intel(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)

Re: [Xorg + KDE] modifier DPI

Publié : ven. 11 juil. 2014, 10:28
par benjarobin
Tu n'as pas appliqué la configuration que je t'ai donné...

Re: [Xorg + KDE] modifier DPI

Publié : ven. 11 juil. 2014, 10:36
par llaqmataqui
J'avais juste enlevé la section screen.
En mettant exactement le contenu que tu m'as donné le résultat est le même.
Voici le log :

Code : Tout sélectionner

[  7092.226] 
X.Org X Server 1.15.2
Release Date: 2014-06-27
[  7092.226] X Protocol Version 11, Revision 0
[  7092.226] Build Operating System: Linux 3.15.1-1-ARCH x86_64 
[  7092.226] Current Operating System: Linux vaio 3.15.4-1-ARCH #1 SMP PREEMPT Mon Jul 7 07:42:54 CEST 2014 x86_64
[  7092.226] Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/mapper/VolGroup0-root:root:allow-discards root=/dev/mapper/root rw initrd=../initramfs-linux.img
[  7092.226] Build Date: 27 June 2014  07:32:26PM
[  7092.226]  
[  7092.226] Current version of pixman: 0.32.6
[  7092.226]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[  7092.226] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  7092.226] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 11 10:32:52 2014
[  7092.226] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  7092.226] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  7092.226] (==) No Layout section.  Using the first Screen section.
[  7092.226] (**) |-->Screen "Screen0" (0)
[  7092.226] (**) |   |-->Monitor "Monitor0"
[  7092.227] (==) Automatically adding devices
[  7092.227] (==) Automatically enabling devices
[  7092.227] (==) Automatically adding GPU devices
[  7092.227] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  7092.227]    Entry deleted from font path.
[  7092.227] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  7092.227]    Entry deleted from font path.
[  7092.227]    (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  7092.227] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  7092.227]    Entry deleted from font path.
[  7092.227]    (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  7092.227] (==) FontPath set to:
        /usr/share/fonts/misc/,
        /usr/share/fonts/TTF/,
        /usr/share/fonts/Type1/
[  7092.227] (==) ModulePath set to "/usr/lib/xorg/modules"
[  7092.227] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[  7092.227] (II) Loader magic: 0x811cc0
[  7092.227] (II) Module ABI versions:
[  7092.227]    X.Org ANSI C Emulation: 0.4
[  7092.227]    X.Org Video Driver: 15.0
[  7092.227]    X.Org XInput driver : 20.0
[  7092.227]    X.Org Server Extension : 8.0
[  7092.227] (II) xfree86: Adding drm device (/dev/dri/card0)
[  7092.227] (II) xfree86: Adding drm device (/dev/dri/card1)
[  7092.231] (--) PCI:*(0:0:2:0) 8086:0126:104d:9084 rev 9, Mem @ 0xd0000000/4194304, 0xa0000000/268435456, I/O @ 0x0000a000/64
[  7092.231] (--) PCI: (0:22:0:0) 1002:6740:104d:9084 rev 0, Mem @ 0xb0000000/268435456, 0xc0200000/131072, I/O @ 0x00005000/256, BIOS @ 0x????????/131072
[  7092.231] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  7092.231] Initializing built-in extension Generic Event Extension
[  7092.231] Initializing built-in extension SHAPE
[  7092.231] Initializing built-in extension MIT-SHM
[  7092.231] Initializing built-in extension XInputExtension
[  7092.231] Initializing built-in extension XTEST
[  7092.231] Initializing built-in extension BIG-REQUESTS
[  7092.231] Initializing built-in extension SYNC
[  7092.231] Initializing built-in extension XKEYBOARD
[  7092.231] Initializing built-in extension XC-MISC
[  7092.231] Initializing built-in extension SECURITY
[  7092.231] Initializing built-in extension XINERAMA
[  7092.231] Initializing built-in extension XFIXES
[  7092.231] Initializing built-in extension RENDER
[  7092.231] Initializing built-in extension RANDR
[  7092.231] Initializing built-in extension COMPOSITE
[  7092.231] Initializing built-in extension DAMAGE
[  7092.231] Initializing built-in extension MIT-SCREEN-SAVER
[  7092.231] Initializing built-in extension DOUBLE-BUFFER
[  7092.231] Initializing built-in extension RECORD
[  7092.231] Initializing built-in extension DPMS
[  7092.231] Initializing built-in extension Present
[  7092.231] Initializing built-in extension DRI3
[  7092.231] Initializing built-in extension X-Resource
[  7092.231] Initializing built-in extension XVideo
[  7092.231] Initializing built-in extension XVideo-MotionCompensation
[  7092.231] Initializing built-in extension XFree86-VidModeExtension
[  7092.231] Initializing built-in extension XFree86-DGA
[  7092.231] Initializing built-in extension XFree86-DRI
[  7092.231] Initializing built-in extension DRI2
[  7092.231] (II) "glx" will be loaded by default.
[  7092.231] (II) LoadModule: "dri2"
[  7092.231] (II) Module "dri2" already built-in
[  7092.231] (II) LoadModule: "glamoregl"
[  7092.231] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[  7092.233] (II) Module glamoregl: vendor="X.Org Foundation"
[  7092.233]    compiled for 1.15.0, module version = 0.6.0
[  7092.233]    ABI class: X.Org ANSI C Emulation, version 0.4
[  7092.233] (II) LoadModule: "glx"
[  7092.233] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  7092.233] (II) Module glx: vendor="X.Org Foundation"
[  7092.233]    compiled for 1.15.2, module version = 1.0.0
[  7092.233]    ABI class: X.Org Server Extension, version 8.0
[  7092.233] (==) AIGLX enabled
[  7092.233] Loading extension GLX
[  7092.233] (==) Matched intel as autoconfigured driver 0
[  7092.233] (==) Matched ati as autoconfigured driver 1
[  7092.233] (==) Matched intel as autoconfigured driver 2
[  7092.233] (==) Matched modesetting as autoconfigured driver 3
[  7092.233] (==) Matched fbdev as autoconfigured driver 4
[  7092.233] (==) Matched vesa as autoconfigured driver 5
[  7092.233] (==) Assigned the driver to the xf86ConfigLayout
[  7092.233] (II) LoadModule: "intel"
[  7092.233] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  7092.233] (II) Module intel: vendor="X.Org Foundation"
[  7092.233]    compiled for 1.15.1, module version = 2.99.912
[  7092.233]    Module class: X.Org Video Driver
[  7092.233]    ABI class: X.Org Video Driver, version 15.0
[  7092.233] (II) LoadModule: "ati"
[  7092.234] (WW) Warning, couldn't open module ati
[  7092.234] (II) UnloadModule: "ati"
[  7092.234] (II) Unloading ati
[  7092.234] (EE) Failed to load module "ati" (module does not exist, 0)
[  7092.234] (II) LoadModule: "modesetting"
[  7092.234] (WW) Warning, couldn't open module modesetting
[  7092.234] (II) UnloadModule: "modesetting"
[  7092.234] (II) Unloading modesetting
[  7092.234] (EE) Failed to load module "modesetting" (module does not exist, 0)
[  7092.234] (II) LoadModule: "fbdev"
[  7092.234] (WW) Warning, couldn't open module fbdev
[  7092.234] (II) UnloadModule: "fbdev"
[  7092.234] (II) Unloading fbdev
[  7092.234] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  7092.234] (II) LoadModule: "vesa"
[  7092.234] (WW) Warning, couldn't open module vesa
[  7092.234] (II) UnloadModule: "vesa"
[  7092.234] (II) Unloading vesa
[  7092.234] (EE) Failed to load module "vesa" (module does not exist, 0)
[  7092.234] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
        i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
        915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
        Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
        GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[  7092.234] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
[  7092.234] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
[  7092.234] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
[  7092.234] (++) using VT number 7

[  7092.241] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20080730
[  7092.241] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
[  7092.241] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
[  7092.241] (II) intel(0): Creating default Display subsection in Screen section
        "Screen0" for depth/fbbpp 24/32
[  7092.241] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  7092.242] (==) intel(0): RGB weight 888
[  7092.242] (==) intel(0): Default visual is TrueColor
[  7092.242] (**) intel(0): Framebuffer tiled
[  7092.242] (**) intel(0): Pixmaps tiled
[  7092.242] (**) intel(0): Forcing per-crtc-pixmaps? no
[  7092.242] (II) intel(0): Output eDP1 using monitor section Monitor0
[  7092.242] (--) intel(0): Found backlight control interface acpi_video1 (type 'firmware') for output eDP1
[  7092.242] (II) intel(0): Output VGA1 has no monitor section
[  7092.242] (II) intel(0): Output HDMI1 has no monitor section
[  7092.242] (II) intel(0): Output DP1 has no monitor section
[  7092.242] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[  7092.242] (II) intel(0): Output VIRTUAL1 has no monitor section
[  7092.242] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
[  7092.242] (**) intel(0): TearFree disabled
[  7092.242] (**) intel(0): Display dimensions: (231, 131) mm
[  7092.242] (**) intel(0): DPI set to (211, 209)
[  7092.242] (II) Loading sub module "dri3"
[  7092.242] (II) LoadModule: "dri3"
[  7092.242] (WW) Warning, couldn't open module dri3
[  7092.242] (II) UnloadModule: "dri3"
[  7092.242] (II) Unloading dri3
[  7092.242] (EE) intel: Failed to load module "dri3" (module does not exist, 0)
[  7092.242] (II) Loading sub module "dri2"
[  7092.242] (II) LoadModule: "dri2"
[  7092.242] (II) Module "dri2" already built-in
[  7092.242] (II) Loading sub module "present"
[  7092.242] (II) LoadModule: "present"
[  7092.242] (WW) Warning, couldn't open module present
[  7092.242] (II) UnloadModule: "present"
[  7092.242] (II) Unloading present
[  7092.242] (EE) intel: Failed to load module "present" (module does not exist, 0)
[  7092.242] (==) Depth 24 pixmap format is 32 bpp
[  7092.243] (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
[  7092.243] (==) intel(0): Backing store enabled
[  7092.243] (==) intel(0): Silken mouse enabled
[  7092.243] (II) intel(0): HW Cursor enabled
[  7092.243] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  7092.243] (==) intel(0): DPMS enabled
[  7092.243] (II) intel(0): [DRI2] Setup complete
[  7092.243] (II) intel(0): [DRI2]   DRI driver: i965
[  7092.243] (II) intel(0): [DRI2]   VDPAU driver: i965
[  7092.243] (II) intel(0): direct rendering: DRI2 enabled
[  7092.243] (==) intel(0): hotplug detection: "enabled"
[  7092.243] (--) RandR disabled
[  7092.252] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  7092.252] (II) AIGLX: enabled GLX_ARB_create_context
[  7092.252] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  7092.252] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[  7092.252] (II) AIGLX: enabled GLX_INTEL_swap_event
[  7092.252] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  7092.252] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[  7092.252] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[  7092.252] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  7092.252] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[  7092.253] (II) AIGLX: Loaded and initialized i965
[  7092.253] (II) GLX: Initialized DRI2 GL provider for screen 0
[  7092.255] (II) intel(0): switch to mode 1920x1080@59.9 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  7092.276] (II) intel(0): Setting screen physical size to 231 x 131
[  7092.306] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[  7092.306] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  7092.306] (II) LoadModule: "evdev"
[  7092.306] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  7092.306] (II) Module evdev: vendor="X.Org Foundation"
[  7092.306]    compiled for 1.15.1, module version = 2.9.0
[  7092.306]    Module class: X.Org XInput Driver
[  7092.306]    ABI class: X.Org XInput driver, version 20.0
[  7092.307] (II) Using input driver 'evdev' for 'Video Bus'
[  7092.307] (**) Video Bus: always reports core events
[  7092.307] (**) evdev: Video Bus: Device: "/dev/input/event3"
[  7092.307] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  7092.307] (--) evdev: Video Bus: Found keys
[  7092.307] (II) evdev: Video Bus: Configuring as keyboard
[  7092.307] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:09/input/input3/event3"
[  7092.307] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[  7092.307] (**) Option "xkb_rules" "evdev"
[  7092.307] (**) Option "xkb_model" "pc104"
[  7092.307] (**) Option "xkb_layout" "us"
[  7092.324] (II) config/udev: Adding input device Sony Vaio Keys (/dev/input/event6)
[  7092.324] (**) Sony Vaio Keys: Applying InputClass "evdev keyboard catchall"
[  7092.324] (II) Using input driver 'evdev' for 'Sony Vaio Keys'
[  7092.324] (**) Sony Vaio Keys: always reports core events
[  7092.324] (**) evdev: Sony Vaio Keys: Device: "/dev/input/event6"
[  7092.324] (--) evdev: Sony Vaio Keys: Vendor 0x104d Product 0
[  7092.324] (--) evdev: Sony Vaio Keys: Found keys
[  7092.324] (II) evdev: Sony Vaio Keys: Configuring as keyboard
[  7092.324] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input7/event6"
[  7092.324] (II) XINPUT: Adding extended input device "Sony Vaio Keys" (type: KEYBOARD, id 7)
[  7092.324] (**) Option "xkb_rules" "evdev"
[  7092.324] (**) Option "xkb_model" "pc104"
[  7092.324] (**) Option "xkb_layout" "us"
[  7092.324] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/event7)
[  7092.324] (II) No input driver specified, ignoring this device.
[  7092.324] (II) This device may have been added with another device file.
[  7092.324] (II) config/udev: Adding input device Sony Vaio Jogdial (/dev/input/mouse1)
[  7092.324] (II) No input driver specified, ignoring this device.
[  7092.325] (II) This device may have been added with another device file.
[  7092.325] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[  7092.325] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  7092.325] (II) Using input driver 'evdev' for 'Video Bus'
[  7092.325] (**) Video Bus: always reports core events
[  7092.325] (**) evdev: Video Bus: Device: "/dev/input/event2"
[  7092.325] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  7092.325] (--) evdev: Video Bus: Found keys
[  7092.325] (II) evdev: Video Bus: Configuring as keyboard
[  7092.325] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1e/device:1f/device:22/device:23/device:24/LNXVIDEO:00/input/input2/event2"
[  7092.325] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[  7092.325] (**) Option "xkb_rules" "evdev"
[  7092.325] (**) Option "xkb_model" "pc104"
[  7092.325] (**) Option "xkb_layout" "us"
[  7092.325] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  7092.325] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  7092.325] (II) Using input driver 'evdev' for 'Power Button'
[  7092.325] (**) Power Button: always reports core events
[  7092.325] (**) evdev: Power Button: Device: "/dev/input/event1"
[  7092.325] (--) evdev: Power Button: Vendor 0 Product 0x1
[  7092.325] (--) evdev: Power Button: Found keys
[  7092.325] (II) evdev: Power Button: Configuring as keyboard
[  7092.325] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  7092.325] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[  7092.325] (**) Option "xkb_rules" "evdev"
[  7092.325] (**) Option "xkb_model" "pc104"
[  7092.325] (**) Option "xkb_layout" "us"
[  7092.326] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[  7092.326] (II) No input driver specified, ignoring this device.
[  7092.326] (II) This device may have been added with another device file.
[  7092.326] (II) config/udev: Adding drm device (/dev/dri/card0)
[  7092.326] (II) config/udev: Adding input device USB2.0 Camera (/dev/input/event14)
[  7092.326] (**) USB2.0 Camera: Applying InputClass "evdev keyboard catchall"
[  7092.326] (II) Using input driver 'evdev' for 'USB2.0 Camera'
[  7092.326] (**) USB2.0 Camera: always reports core events
[  7092.326] (**) evdev: USB2.0 Camera: Device: "/dev/input/event14"
[  7092.326] (--) evdev: USB2.0 Camera: Vendor 0x5c8 Product 0x318
[  7092.326] (--) evdev: USB2.0 Camera: Found keys
[  7092.326] (II) evdev: USB2.0 Camera: Configuring as keyboard
[  7092.326] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.3/3-1.3:1.0/input/input15/event14"
[  7092.326] (II) XINPUT: Adding extended input device "USB2.0 Camera" (type: KEYBOARD, id 10)
[  7092.326] (**) Option "xkb_rules" "evdev"
[  7092.326] (**) Option "xkb_model" "pc104"
[  7092.326] (**) Option "xkb_layout" "us"
[  7092.326] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
[  7092.326] (II) No input driver specified, ignoring this device.
[  7092.326] (II) This device may have been added with another device file.
[  7092.327] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
[  7092.327] (II) No input driver specified, ignoring this device.
[  7092.327] (II) This device may have been added with another device file.
[  7092.327] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
[  7092.327] (II) No input driver specified, ignoring this device.
[  7092.327] (II) This device may have been added with another device file.
[  7092.327] (II) config/udev: Adding drm device (/dev/dri/card1)
[  7092.327] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event8)
[  7092.327] (II) No input driver specified, ignoring this device.
[  7092.327] (II) This device may have been added with another device file.
[  7092.327] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/event5)
[  7092.327] (**) Logitech Gaming Mouse G400: Applying InputClass "evdev pointer catchall"
[  7092.327] (II) Using input driver 'evdev' for 'Logitech Gaming Mouse G400'
[  7092.327] (**) Logitech Gaming Mouse G400: always reports core events
[  7092.327] (**) evdev: Logitech Gaming Mouse G400: Device: "/dev/input/event5"
[  7092.327] (--) evdev: Logitech Gaming Mouse G400: Vendor 0x46d Product 0xc245
[  7092.327] (--) evdev: Logitech Gaming Mouse G400: Found 12 mouse buttons
[  7092.327] (--) evdev: Logitech Gaming Mouse G400: Found scroll wheel(s)
[  7092.327] (--) evdev: Logitech Gaming Mouse G400: Found relative axes
[  7092.327] (--) evdev: Logitech Gaming Mouse G400: Found x and y relative axes
[  7092.327] (II) evdev: Logitech Gaming Mouse G400: Configuring as mouse
[  7092.327] (II) evdev: Logitech Gaming Mouse G400: Adding scrollwheel support
[  7092.327] (**) evdev: Logitech Gaming Mouse G400: YAxisMapping: buttons 4 and 5
[  7092.327] (**) evdev: Logitech Gaming Mouse G400: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  7092.327] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1.2/6-1.2:1.0/0003:046D:C245.0001/input/input6/event5"
[  7092.327] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G400" (type: MOUSE, id 11)
[  7092.327] (II) evdev: Logitech Gaming Mouse G400: initialized for relative axes.
[  7092.327] (**) Logitech Gaming Mouse G400: (accel) keeping acceleration scheme 1
[  7092.327] (**) Logitech Gaming Mouse G400: (accel) acceleration profile 0
[  7092.328] (**) Logitech Gaming Mouse G400: (accel) acceleration factor: 2.000
[  7092.328] (**) Logitech Gaming Mouse G400: (accel) acceleration threshold: 4
[  7092.328] (II) config/udev: Adding input device Logitech Gaming Mouse G400 (/dev/input/mouse0)
[  7092.328] (II) No input driver specified, ignoring this device.
[  7092.328] (II) This device may have been added with another device file.
[  7092.328] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[  7092.328] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  7092.328] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  7092.328] (**) AT Translated Set 2 keyboard: always reports core events
[  7092.328] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event4"
[  7092.328] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  7092.328] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  7092.328] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  7092.328] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[  7092.328] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[  7092.328] (**) Option "xkb_rules" "evdev"
[  7092.328] (**) Option "xkb_model" "pc104"
[  7092.328] (**) Option "xkb_layout" "us"
[  7092.328] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event13)
[  7092.328] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[  7092.328] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[  7092.328] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[  7092.328] (II) LoadModule: "synaptics"
[  7092.328] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  7092.329] (II) Module synaptics: vendor="X.Org Foundation"
[  7092.329]    compiled for 1.15.1, module version = 1.8.0
[  7092.329]    Module class: X.Org XInput Driver
[  7092.329]    ABI class: X.Org XInput driver, version 20.0
[  7092.329] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[  7092.329] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  7092.329] (**) Option "Device" "/dev/input/event13"
[  7092.489] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5768 (res 66)
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4748 (res 66)
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[  7092.489] (**) Option "FingerLow" "40"
[  7092.489] (**) Option "FingerHigh" "45"
[  7092.489] (**) Option "HorizEdgeScroll" "on"
[  7092.489] (**) Option "HorizTwoFingerScroll" "on"
[  7092.489] (**) Option "TapButton1" "1"
[  7092.489] (**) Option "TapButton2" "3"
[  7092.489] (**) Option "TapButton3" "0"
[  7092.489] (**) Option "CoastingSpeed" "0"
[  7092.489] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[  7092.489] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  7092.489] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  7092.569] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input14/event13"
[  7092.569] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
[  7092.569] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  7092.569] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[  7092.569] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
[  7092.570] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[  7092.570] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[  7092.570] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[  7092.570] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[  7092.570] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  7092.571] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
[  7092.571] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[  7092.571] (II) config/udev: Adding input device PC Speaker (/dev/input/event12)
[  7092.571] (II) No input driver specified, ignoring this device.
[  7092.571] (II) This device may have been added with another device file.
[  7097.506] (II) intel(0): EDID vendor "MS_", prod id 37
[  7097.506] (II) intel(0): Using EDID range info for horizontal sync
[  7097.506] (II) intel(0): Using EDID range info for vertical refresh
[  7097.506] (II) intel(0): Printing DDC gathered Modelines:
[  7097.506] (II) intel(0): Modeline "1920x1080"x0.0  162.84  1920 1952 1984 2481  1080 1083 1086 1095 -hsync -vsync (65.6 kHz eP)
[  7097.506] (II) intel(0): Modeline "1920x1080"x0.0   99.91  1920 1952 1984 2281  1080 1083 1086 1095 -hsync -vsync (43.8 kHz e)
[  7097.506] (II) intel(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)

Re: [Xorg] résolution par défaut

Publié : sam. 12 juil. 2014, 09:51
par bobo
Moviuro a écrit :systemsettings > Apparence des applications > Fontes de polices > Forcer le DPI des fontes
[...]
Donc KDE se fout royalement de X. (Et oui, clairement, j'ai du 120 DPI)
Voilà le genre de choses qui me dérange avec KDE, au taf le KDE3 fait sa sauce pour la gestion de clavier et ne prend pas en compte le xkbcomp sur un dossier de mapping de clavier perso avec BÉPO dedans. Mieux : en session X à distance avec NX, lorsque je tape « _ » avec « AltGr + Espace » venant du poste client, KDE perd les pédales et fait de la merde avec la saisie clavier pour toute la session (caractères chelous dans le terminal etc…). Problème résolu avec compilation de dwm et utilisation en session X à distance.

KDE ne devrait pas se foutre royalement de X.

Re: [Xorg + KDE] modifier DPI

Publié : sam. 12 juil. 2014, 12:57
par benjarobin
Kde respecte tout à fait X... Il faut juste savoir ce que l'on fait...
Et bien sur toute modification dans la configuration de kde supplante celle de X. Mais si rien n'est modifié dans la configuration de kde, celle de X est parfaitement respecté.

Re: [Xorg + KDE] modifier DPI

Publié : mar. 15 juil. 2014, 09:05
par llaqmataqui
Ça n'explique pas pourquoi mes applications gtk ne suivent pas les réglages de Xorg.