logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).

#1 10-03-2018 14:06:57

evanescente~ondine
Membre
Distrib. : Debian 9 (stretch)
Noyau : Linux 4.9.0-3-amd64
(G)UI : mate
Inscription : 31-10-2014

échec à mettre en place .Xsession

Hello.
J'ai besoin de commencer à utiliser .xsession ou l'équivalent, mais avec la confguration plus bas, j'ai juste un écran noir. Je ne peux même pas retourner aux consoles virtuelles J'ai mis en dessous tout ce que je pouvais, la config de bspwmrc (wm que j'aimerais essayer), celle de xhkdrc (gestionnaire de hotkeys), .xsession, et le journal d'erreur de xsession.

.xsession

xsetroot -solid gray
# xmodmap -e "keysym Super_L = Multi_key"
xset s off; xset dpms 0 1800 0
exec bspwm



.xsession-errors

Xsession: X session started for mehdi at samedi 10 +mars 2018, +13:44:02 +(UTC+0100)
dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting XAUTHORITY=/home/mehdi/.Xauthority
localuser:mehdi being added to access control list
dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting USER=mehdi
dbus-update-activation-environment: setting XDG_SESSION_TYPE=x11
dbus-update-activation-environment: setting HOME=/home/mehdi
dbus-update-activation-environment: setting DESKTOP_SESSION=i3
dbus-update-activation-environment: setting XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
dbus-update-activation-environment: setting LOGNAME=mehdi
dbus-update-activation-environment: setting PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
dbus-update-activation-environment: setting GDM_LANG=fr_FR.utf8
dbus-update-activation-environment: setting XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
dbus-update-activation-environment: setting XDG_RUNTIME_DIR=/run/user/1000
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting LANG=fr_FR.UTF-8
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=i3
dbus-update-activation-environment: setting XDG_SESSION_DESKTOP=i3
dbus-update-activation-environment: setting XAUTHORITY=/home/mehdi/.Xauthority
dbus-update-activation-environment: setting XDG_GREETER_DATA_DIR=/var/lib/lightdm/data/mehdi
dbus-update-activation-environment: setting SHELL=/bin/bash
dbus-update-activation-environment: setting GDMSESSION=i3
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1
dbus-update-activation-environment: setting PWD=/home/mehdi
/bin/sh: 0: Illegal option --
i3status: trying to auto-detect output_format setting
i3status: auto-detection: parent process is "sh", looking at its parent
i3status: auto-detected "i3bar"
 


.config/sxhkd/sxhkdrc (hotkeys manager, to be used with this wm)

#
# wm independent hotkeys
#

# terminal emulator
super + Return
  termite

# program launcher
super + d
  dmenu_run

# make sxhkd reload its configuration files:
super + shift + r
  pkill -USR1 -x sxhkd

#
# bspwm hotkeys
#

# quit bspwm normally
super + shift + q
  bspc quit

# close and kill
super + {_,shift + }x
  bspc node -{c,k}

# alternate between the tiled and monocle layout
super + m
  bspc desktop -l next

# send the newest marked node to the newest preselected node
super + v
  bspc node newest.marked.local -n newest.!automatic.local

# swap the current node and the biggest node
super + space
  bspc node -s biggest

#
# state/flags
#

# set the window state
super + {t,shift + t,shift+f,f}
  bspc node -t {tiled,pseudo_tiled,floating,fullscreen}

# set the node flags
super + ctrl + {m,x,y,z}
  bspc node -g {marked,locked,sticky,private}

#
# focus/swap
#

# focus the node in the given direction
super + {_,alt + }{Left,Down,Up,Right}
  bspc node -{f,s} {west,south,north,east}

# focus the node for the given path jump
# super + {p,b,comma,period}
# bspc node -f @{parent,brother,first,second}

# focus the next/previous node in the current desktop
super + {_,shift + }c
  bspc node -f {next,prev}.local

# focus the next/previous desktop in the current monitor
super + {:,!}
  bspc desktop -f {prev,next}.local

# focus the last node/desktop
super + {Tab, shift+Tab}
  bspc {node,desktop} -f last

# focus the older or newer node in the focus history
super + {o,i}
  bspc wm -h off; \
  bspc node {older,newer} -f; \
  bspc wm -h on

# focus or send to the given desktop
super + {_,shift + }{1-9,0}
  bspc {desktop -f,node -d} '^{1-9,10}'

#
# preselect
#

# preselect the direction
# super + ctrl + {left,down, up, right}
# bspc node -p {west,south,north,east}

# preselect the ratio
# super + ctrl + {1-9}
# bspc node -o 0.{1-9}

# cancel the preselection for the focused node
# super + ctrl + space
# bspc node -p cancel

# cancel the preselection for the focused desktop
# super + ctrl + shift + space
# bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel

#
# move/resize
#

# expand a window by moving one of its side outward
super + alt + {Left, Down, Up, Right}
  bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}

# contract a window by moving one of its side inward
super + alt + shift + {Left, Down, Up, Right}
  bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}

# move a floating window
super + shift + {Left,Down,Up,Right}
bspc node -v {-20 0,0 20,0 -20,20 0}



Xorg.1.log

[  1585.703]
X.Org X Server 1.19.6
Release Date: 2017-12-20
[  1585.703] X Protocol Version 11, Revision 0
[  1585.704] Build Operating System: Linux 4.9.0-5-amd64 x86_64 Debian
[  1585.704] Current Operating System: Linux debian 4.9.0-6-amd64 #1 SMP Debian 4.9.82-1+deb9u3 (2018-03-02) x86_64
[  1585.704] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-6-amd64 root=UUID=e89d8575-fe07-4745-a94a-47b909f0245c ro quiet
[  1585.704] Build Date: 26 January 2018  04:30:21PM
[  1585.704] xorg-server 2:1.19.6-1 (https://www.debian.org/support)
[  1585.704] Current version of pixman: 0.34.0
[  1585.705]  Before reporting problems, check http://wiki.x.org
  to make sure that you have the latest version.
[  1585.705] Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1585.706] (==) Log file: "/var/log/Xorg.1.log", Time: Sat Mar 10 14:08:47 2018
[  1585.706] (==) Using config file: "/etc/xorg.conf"
[  1585.706] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1585.706] (==) No Layout section.  Using the first Screen section.
[  1585.706] (==) No screen section available. Using defaults.
[  1585.706] (**) |-->Screen "Default Screen Section" (0)
[  1585.706] (**) |   |-->Monitor "<default monitor>"
[  1585.706] (==) No monitor specified for screen "Default Screen Section".
  Using a default monitor configuration.
[  1585.706] (==) Automatically adding devices
[  1585.706] (==) Automatically enabling devices
[  1585.706] (==) Automatically adding GPU devices
[  1585.706] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1585.707] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[  1585.707]  Entry deleted from font path.
[  1585.707] (==) FontPath set to:
  /usr/share/fonts/X11/misc,
  /usr/share/fonts/X11/100dpi/:unscaled,
  /usr/share/fonts/X11/75dpi/:unscaled,
  /usr/share/fonts/X11/Type1,
  /usr/share/fonts/X11/100dpi,
  /usr/share/fonts/X11/75dpi,
  built-ins
[  1585.707] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1585.707] (II) The server relies on udev to provide the list of input devices.
  If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1585.707] (II) Loader magic: 0x561fe6cf7de0
[  1585.707] (II) Module ABI versions:
[  1585.707]  X.Org ANSI C Emulation: 0.4
[  1585.707]  X.Org Video Driver: 23.0
[  1585.707]  X.Org XInput driver : 24.1
[  1585.707]  X.Org Server Extension : 10.0
[  1585.708] (++) using VT number 1

[  1585.713] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[  1585.714] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1585.715] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[  1585.716] (--) PCI:*(0:1:0:0) 10de:1c81:10de:11c0 rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xce000000/33554432, I/O @ 0x0000d800/128, BIOS @ 0x????????/131072
[  1585.717] (II) LoadModule: "glx"
[  1585.717] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[  1585.724] (II) Module glx: vendor="NVIDIA Corporation"
[  1585.724]  compiled for 4.0.2, module version = 1.0.0
[  1585.724]  Module class: X.Org Server Extension
[  1585.724] (II) NVIDIA GLX Module  384.111  Tue Dec 19 22:51:13 PST 2017
[  1585.724] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[  1585.724]  loading driver: nvidia
[  1585.724] (==) Matched nvidia as autoconfigured driver 0
[  1585.724] (==) Matched nouveau as autoconfigured driver 1
[  1585.724] (==) Matched nv as autoconfigured driver 2
[  1585.724] (==) Matched nouveau as autoconfigured driver 3
[  1585.724] (==) Matched nv as autoconfigured driver 4
[  1585.724] (==) Matched modesetting as autoconfigured driver 5
[  1585.724] (==) Matched fbdev as autoconfigured driver 6
[  1585.724] (==) Matched vesa as autoconfigured driver 7
[  1585.724] (==) Assigned the driver to the xf86ConfigLayout
[  1585.724] (II) LoadModule: "nvidia"
[  1585.724] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  1585.725] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1585.725]  compiled for 4.0.2, module version = 1.0.0
[  1585.725]  Module class: X.Org Video Driver
[  1585.725] (II) LoadModule: "nouveau"
[  1585.725] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
[  1585.725] (II) Module nouveau: vendor="X.Org Foundation"
[  1585.725]  compiled for 1.19.3, module version = 1.0.15
[  1585.725]  Module class: X.Org Video Driver
[  1585.725]  ABI class: X.Org Video Driver, version 23.0
[  1585.725] (II) LoadModule: "nv"
[  1585.725] (WW) Warning, couldn't open module nv
[  1585.725] (II) UnloadModule: "nv"
[  1585.725] (II) Unloading nv
[  1585.725] (EE) Failed to load module "nv" (module does not exist, 0)
[  1585.725] (II) LoadModule: "modesetting"
[  1585.725] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[  1585.726] (II) Module modesetting: vendor="X.Org Foundation"
[  1585.726]  compiled for 1.19.6, module version = 1.19.6
[  1585.726]  Module class: X.Org Video Driver
[  1585.726]  ABI class: X.Org Video Driver, version 23.0
[  1585.726] (II) LoadModule: "fbdev"
[  1585.726] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[  1585.726] (II) Module fbdev: vendor="X.Org Foundation"
[  1585.726]  compiled for 1.19.0, module version = 0.4.4
[  1585.726]  Module class: X.Org Video Driver
[  1585.726]  ABI class: X.Org Video Driver, version 23.0
[  1585.726] (II) LoadModule: "vesa"
[  1585.726] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  1585.726] (II) Module vesa: vendor="X.Org Foundation"
[  1585.726]  compiled for 1.19.0, module version = 2.3.4
[  1585.726]  Module class: X.Org Video Driver
[  1585.726]  ABI class: X.Org Video Driver, version 23.0
[  1585.726] (II) NVIDIA dlloader X Driver  384.111  Tue Dec 19 22:25:34 PST 2017
[  1585.726] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1585.726] (II) NOUVEAU driver Date:   Fri Apr 21 14:41:17 2017 -0400
[  1585.726] (II) NOUVEAU driver for NVIDIA chipset families :
[  1585.726]  RIVA TNT        (NV04)
[  1585.726]  RIVA TNT2       (NV05)
[  1585.726]  GeForce 256     (NV10)
[  1585.726]  GeForce 2       (NV11, NV15)
[  1585.726]  GeForce 4MX     (NV17, NV18)
[  1585.726]  GeForce 3       (NV20)
[  1585.726]  GeForce 4Ti     (NV25, NV28)
[  1585.726]  GeForce FX      (NV3x)
[  1585.726]  GeForce 6       (NV4x)
[  1585.726]  GeForce 7       (G7x)
[  1585.727]  GeForce 8       (G8x)
[  1585.727]  GeForce GTX 200 (NVA0)
[  1585.727]  GeForce GTX 400 (NVC0)
[  1585.727] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  1585.727] (II) FBDEV: driver for framebuffer: fbdev
[  1585.727] (II) VESA: driver for VESA chipsets: vesa
[  1585.727] (II) systemd-logind: releasing fd for 226:0
[  1585.728] (II) Loading sub module "fb"
[  1585.728] (II) LoadModule: "fb"
[  1585.728] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1585.728] (II) Module fb: vendor="X.Org Foundation"
[  1585.728]  compiled for 1.19.6, module version = 1.0.0
[  1585.728]  ABI class: X.Org ANSI C Emulation, version 0.4
[  1585.728] (II) Loading sub module "wfb"
[  1585.728] (II) LoadModule: "wfb"
[  1585.728] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  1585.728] (II) Module wfb: vendor="X.Org Foundation"
[  1585.728]  compiled for 1.19.6, module version = 1.0.0
[  1585.728]  ABI class: X.Org ANSI C Emulation, version 0.4
[  1585.728] (II) Loading sub module "ramdac"
[  1585.728] (II) LoadModule: "ramdac"
[  1585.728] (II) Module "ramdac" already built-in
[  1585.729] (WW) Falling back to old probe method for modesetting
[  1585.729] (WW) Falling back to old probe method for fbdev
[  1585.729] (II) Loading sub module "fbdevhw"
[  1585.729] (II) LoadModule: "fbdevhw"
[  1585.729] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[  1585.729] (II) Module fbdevhw: vendor="X.Org Foundation"
[  1585.729]  compiled for 1.19.6, module version = 0.0.2
[  1585.729]  ABI class: X.Org Video Driver, version 23.0
[  1585.729] (EE) open /dev/fb0: No such file or directory
[  1585.729] (WW) Falling back to old probe method for vesa
[  1585.729] (II) NVIDIA(0): Creating default Display subsection in Screen section
  "Default Screen Section" for depth/fbbpp 24/32
[  1585.729] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[  1585.729] (==) NVIDIA(0): RGB weight 888
[  1585.729] (==) NVIDIA(0): Default visual is TrueColor
[  1585.729] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1585.729] (**) NVIDIA(0): Enabling 2D acceleration
[  1586.527] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[  1586.527] (--) NVIDIA(0):     DFP-0
[  1586.527] (--) NVIDIA(0):     DFP-1 (boot)
[  1586.527] (--) NVIDIA(0):     DFP-2
[  1586.527] (--) NVIDIA(0):     DFP-3
[  1586.528] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1050 (GP107-A) at PCI:1:0:0 (GPU-0)
[  1586.528] (--) NVIDIA(0): Memory: 2097152 kBytes
[  1586.528] (--) NVIDIA(0): VideoBIOS: 86.07.39.00.d5
[  1586.528] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  1586.528] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  1586.528] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[  1586.528] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[  1586.528] (--) NVIDIA(GPU-0):
[  1586.558] (--) NVIDIA(GPU-0): Acer P221W (DFP-1): connected
[  1586.558] (--) NVIDIA(GPU-0): Acer P221W (DFP-1): Internal TMDS
[  1586.558] (--) NVIDIA(GPU-0): Acer P221W (DFP-1): 600.0 MHz maximum pixel clock
[  1586.558] (--) NVIDIA(GPU-0):
[  1586.558] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  1586.558] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  1586.558] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[  1586.558] (--) NVIDIA(GPU-0):
[  1586.558] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  1586.558] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  1586.558] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  1586.558] (--) NVIDIA(GPU-0):
[  1586.562] (==) NVIDIA(0):
[  1586.562] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  1586.562] (==) NVIDIA(0):     will be used as the requested mode.
[  1586.562] (==) NVIDIA(0):
[  1586.562] (II) NVIDIA(0): Validated MetaModes:
[  1586.562] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select"
[  1586.562] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
[  1586.573] (--) NVIDIA(0): DPI set to (90, 88); computed from "UseEdidDpi" X config
[  1586.573] (--) NVIDIA(0):     option
[  1586.573] (II) UnloadModule: "nouveau"
[  1586.573] (II) Unloading nouveau
[  1586.573] (II) UnloadModule: "modesetting"
[  1586.573] (II) Unloading modesetting
[  1586.573] (II) UnloadModule: "fbdev"
[  1586.573] (II) Unloading fbdev
[  1586.573] (II) UnloadSubModule: "fbdevhw"
[  1586.573] (II) Unloading fbdevhw
[  1586.573] (II) UnloadModule: "vesa"
[  1586.573] (II) Unloading vesa
[  1586.573] (--) Depth 24 pixmap format is 32 bpp
[  1586.574] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[  1586.574] (II) NVIDIA:     access.
[  1586.582] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  1586.582] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  1586.582] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  1586.582] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  1586.582] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  1586.582] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  1586.582] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  1586.582] (II) NVIDIA(0):     Config Options in the README.
[  1586.607] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select"
[  1586.662] (==) NVIDIA(0): Disabling shared memory pixmaps
[  1586.662] (==) NVIDIA(0): Backing store enabled
[  1586.662] (==) NVIDIA(0): Silken mouse enabled
[  1586.662] (==) NVIDIA(0): DPMS enabled
[  1586.663] (II) Loading sub module "dri2"
[  1586.663] (II) LoadModule: "dri2"
[  1586.663] (II) Module "dri2" already built-in
[  1586.663] (II) NVIDIA(0): [DRI2] Setup complete
[  1586.663] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  1586.663] (--) RandR disabled
[  1586.666] (II) SELinux: Disabled on system
[  1586.666] (II) Initializing extension GLX
[  1586.666] (II) Indirect GLX disabled.
[  1586.741] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[  1586.741] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1586.741] (II) LoadModule: "libinput"
[  1586.741] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  1586.744] (II) Module libinput: vendor="X.Org Foundation"
[  1586.744]  compiled for 1.19.3, module version = 0.26.0
[  1586.744]  Module class: X.Org XInput Driver
[  1586.744]  ABI class: X.Org XInput driver, version 24.1
[  1586.744] (II) Using input driver 'libinput' for 'Power Button'
[  1586.746] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 36 paused 0
[  1586.746] (**) Power Button: always reports core events
[  1586.746] (**) Option "Device" "/dev/input/event5"
[  1586.747] (**) Option "_source" "server/udev"
[  1586.748] (II) event5  - Power Button: is tagged by udev as: Keyboard
[  1586.748] (II) event5  - Power Button: device is a keyboard
[  1586.748] (II) event5  - Power Button: device removed
[  1586.748] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event5"
[  1586.748] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1586.748] (**) Option "xkb_model" "pc105"
[  1586.748] (**) Option "xkb_layout" "fr"
[  1586.748] (**) Option "xkb_variant" "latin9"
[  1586.783] (II) event5  - Power Button: is tagged by udev as: Keyboard
[  1586.783] (II) event5  - Power Button: device is a keyboard
[  1586.784] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[  1586.784] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1586.784] (II) Using input driver 'libinput' for 'Power Button'
[  1586.786] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 39 paused 0
[  1586.786] (**) Power Button: always reports core events
[  1586.786] (**) Option "Device" "/dev/input/event4"
[  1586.786] (**) Option "_source" "server/udev"
[  1586.786] (II) event4  - Power Button: is tagged by udev as: Keyboard
[  1586.786] (II) event4  - Power Button: device is a keyboard
[  1586.786] (II) event4  - Power Button: device removed
[  1586.786] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input7/event4"
[  1586.786] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  1586.786] (**) Option "xkb_model" "pc105"
[  1586.786] (**) Option "xkb_layout" "fr"
[  1586.787] (**) Option "xkb_variant" "latin9"
[  1586.787] (II) event4  - Power Button: is tagged by udev as: Keyboard
[  1586.787] (II) event4  - Power Button: device is a keyboard
[  1586.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[  1586.788] (II) No input driver specified, ignoring this device.
[  1586.788] (II) This device may have been added with another device file.
[  1586.789] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[  1586.789] (II) No input driver specified, ignoring this device.
[  1586.789] (II) This device may have been added with another device file.
[  1586.790] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[  1586.790] (II) No input driver specified, ignoring this device.
[  1586.790] (II) This device may have been added with another device file.
[  1586.791] (II) config/udev: Adding input device SEM USB Keyboard (/dev/input/event0)
[  1586.791] (**) SEM USB Keyboard: Applying InputClass "libinput keyboard catchall"
[  1586.791] (II) Using input driver 'libinput' for 'SEM USB Keyboard'
[  1586.793] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 40 paused 0
[  1586.793] (**) SEM USB Keyboard: always reports core events
[  1586.793] (**) Option "Device" "/dev/input/event0"
[  1586.793] (**) Option "_source" "server/udev"
[  1586.794] (II) event0  - SEM USB Keyboard: is tagged by udev as: Keyboard
[  1586.794] (II) event0  - SEM USB Keyboard: device is a keyboard
[  1586.794] (II) event0  - SEM USB Keyboard: device removed
[  1586.794] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/0003:1A2C:0E24.0001/input/input3/event0"
[  1586.794] (II) XINPUT: Adding extended input device "SEM USB Keyboard" (type: KEYBOARD, id 8)
[  1586.794] (**) Option "xkb_model" "pc105"
[  1586.794] (**) Option "xkb_layout" "fr"
[  1586.794] (**) Option "xkb_variant" "latin9"
[  1586.795] (II) event0  - SEM USB Keyboard: is tagged by udev as: Keyboard
[  1586.795] (II) event0  - SEM USB Keyboard: device is a keyboard
[  1586.796] (II) config/udev: Adding input device SEM USB Keyboard (/dev/input/event1)
[  1586.796] (**) SEM USB Keyboard: Applying InputClass "libinput keyboard catchall"
[  1586.796] (II) Using input driver 'libinput' for 'SEM USB Keyboard'
[  1586.797] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 41 paused 0
[  1586.797] (**) SEM USB Keyboard: always reports core events
[  1586.797] (**) Option "Device" "/dev/input/event1"
[  1586.797] (**) Option "_source" "server/udev"
[  1586.798] (II) event1  - SEM USB Keyboard: is tagged by udev as: Keyboard
[  1586.798] (II) event1  - SEM USB Keyboard: device is a keyboard
[  1586.798] (II) event1  - SEM USB Keyboard: device removed
[  1586.798] (II) libinput: SEM USB Keyboard: needs a virtual subdevice
[  1586.798] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.1/0003:1A2C:0E24.0002/input/input4/event1"
[  1586.798] (II) XINPUT: Adding extended input device "SEM USB Keyboard" (type: MOUSE, id 9)
[  1586.798] (**) Option "AccelerationScheme" "none"
[  1586.798] (**) SEM USB Keyboard: (accel) selected scheme none/0
[  1586.798] (**) SEM USB Keyboard: (accel) acceleration factor: 2.000
[  1586.798] (**) SEM USB Keyboard: (accel) acceleration threshold: 4
[  1586.799] (II) event1  - SEM USB Keyboard: is tagged by udev as: Keyboard
[  1586.799] (II) event1  - SEM USB Keyboard: device is a keyboard
[  1586.799] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/event2)
[  1586.799] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "libinput keyboard catchall"
[  1586.799] (II) Using input driver 'libinput' for 'MOSART Semi. 2.4G Keyboard Mouse'
[  1586.801] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 42 paused 0
[  1586.801] (**) MOSART Semi. 2.4G Keyboard Mouse: always reports core events
[  1586.801] (**) Option "Device" "/dev/input/event2"
[  1586.801] (**) Option "_source" "server/udev"
[  1586.801] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: is tagged by udev as: Keyboard
[  1586.801] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: device is a keyboard
[  1586.801] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: device removed
[  1586.801] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-1/4-1:1.0/0003:062A:4101.0003/input/input5/event2"
[  1586.801] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Keyboard Mouse" (type: KEYBOARD, id 10)
[  1586.801] (**) Option "xkb_model" "pc105"
[  1586.801] (**) Option "xkb_layout" "fr"
[  1586.801] (**) Option "xkb_variant" "latin9"
[  1586.802] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: is tagged by udev as: Keyboard
[  1586.802] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: device is a keyboard
[  1586.803] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/event3)
[  1586.803] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "libinput pointer catchall"
[  1586.803] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "libinput keyboard catchall"
[  1586.803] (II) Using input driver 'libinput' for 'MOSART Semi. 2.4G Keyboard Mouse'
[  1586.804] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 43 paused 0
[  1586.804] (**) MOSART Semi. 2.4G Keyboard Mouse: always reports core events
[  1586.804] (**) Option "Device" "/dev/input/event3"
[  1586.804] (**) Option "_source" "server/udev"
[  1586.805] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: is tagged by udev as: Keyboard Mouse
[  1586.805] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device is a pointer
[  1586.805] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device is a keyboard
[  1586.805] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device removed
[  1586.805] (II) libinput: MOSART Semi. 2.4G Keyboard Mouse: needs a virtual subdevice
[  1586.805] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-1/4-1:1.1/0003:062A:4101.0004/input/input6/event3"
[  1586.805] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Keyboard Mouse" (type: MOUSE, id 11)
[  1586.805] (**) Option "AccelerationScheme" "none"
[  1586.805] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) selected scheme none/0
[  1586.805] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) acceleration factor: 2.000
[  1586.805] (**) MOSART Semi. 2.4G Keyboard Mouse: (accel) acceleration threshold: 4
[  1586.806] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: is tagged by udev as: Keyboard Mouse
[  1586.806] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device is a pointer
[  1586.806] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device is a keyboard
[  1586.806] (II) config/udev: Adding input device MOSART Semi. 2.4G Keyboard Mouse (/dev/input/mouse0)
[  1586.806] (II) No input driver specified, ignoring this device.
[  1586.806] (II) This device may have been added with another device file.
[  1586.807] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event7)
[  1586.807] (II) No input driver specified, ignoring this device.
[  1586.807] (II) This device may have been added with another device file.
[  1586.807] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event8)
[  1586.807] (II) No input driver specified, ignoring this device.
[  1586.807] (II) This device may have been added with another device file.
[  1586.807] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event9)
[  1586.807] (II) No input driver specified, ignoring this device.
[  1586.807] (II) This device may have been added with another device file.
[  1586.808] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event10)
[  1586.808] (II) No input driver specified, ignoring this device.
[  1586.808] (II) This device may have been added with another device file.
[  1586.808] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event11)
[  1586.808] (II) No input driver specified, ignoring this device.
[  1586.808] (II) This device may have been added with another device file.
[  1586.809] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[  1586.809] (II) No input driver specified, ignoring this device.
[  1586.809] (II) This device may have been added with another device file.
[  1586.809] (II) config/udev: Adding input device (unnamed) (/dev/ttyS0)
[  1586.809] (II) No input driver specified, ignoring this device.
[  1586.809] (II) This device may have been added with another device file.
[  1586.809] (II) config/udev: Adding input device (unnamed) (/dev/ttyS1)
[  1586.809] (II) No input driver specified, ignoring this device.
[  1586.809] (II) This device may have been added with another device file.
[  1586.809] (II) config/udev: Adding input device (unnamed) (/dev/ttyS2)
[  1586.809] (II) No input driver specified, ignoring this device.
[  1586.809] (II) This device may have been added with another device file.
[  1586.810] (II) config/udev: Adding input device (unnamed) (/dev/ttyS3)
[  1586.810] (II) No input driver specified, ignoring this device.
[  1586.810] (II) This device may have been added with another device file.
[  1586.810] (II) config/udev: Adding input device (unnamed) (/dev/input/mice)
[  1586.810] (II) No input driver specified, ignoring this device.
[  1586.810] (II) This device may have been added with another device file.
[  1586.810] (II) config/udev: Adding input device (unnamed) (/dev/console)
[  1586.810] (II) No input driver specified, ignoring this device.
[  1586.810] (II) This device may have been added with another device file.
[  1586.810] (II) config/udev: Adding input device (unnamed) (/dev/ptmx)
[  1586.810] (II) No input driver specified, ignoring this device.
[  1586.810] (II) This device may have been added with another device file.
[  1586.810] (II) config/udev: Adding input device (unnamed) (/dev/tty)
[  1586.810] (II) No input driver specified, ignoring this device.
[  1586.810] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty0)
[  1586.811] (II) No input driver specified, ignoring this device.
[  1586.811] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty1)
[  1586.811] (II) No input driver specified, ignoring this device.
[  1586.811] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty10)
[  1586.811] (II) No input driver specified, ignoring this device.
[  1586.811] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty11)
[  1586.811] (II) No input driver specified, ignoring this device.
[  1586.811] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty12)
[  1586.811] (II) No input driver specified, ignoring this device.
[  1586.811] (II) This device may have been added with another device file.
[  1586.811] (II) config/udev: Adding input device (unnamed) (/dev/tty13)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty14)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty15)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty16)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty17)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty18)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.812] (II) config/udev: Adding input device (unnamed) (/dev/tty19)
[  1586.812] (II) No input driver specified, ignoring this device.
[  1586.812] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty2)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty20)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty21)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty22)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty23)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty24)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.813] (II) config/udev: Adding input device (unnamed) (/dev/tty25)
[  1586.813] (II) No input driver specified, ignoring this device.
[  1586.813] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty26)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty27)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty28)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty29)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty3)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty30)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.814] (II) config/udev: Adding input device (unnamed) (/dev/tty31)
[  1586.814] (II) No input driver specified, ignoring this device.
[  1586.814] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty32)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty33)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty34)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty35)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty36)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty37)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.815] (II) config/udev: Adding input device (unnamed) (/dev/tty38)
[  1586.815] (II) No input driver specified, ignoring this device.
[  1586.815] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty39)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty4)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty40)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty41)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty42)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty43)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.816] (II) config/udev: Adding input device (unnamed) (/dev/tty44)
[  1586.816] (II) No input driver specified, ignoring this device.
[  1586.816] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty45)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty46)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty47)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty48)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty49)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty5)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.817] (II) config/udev: Adding input device (unnamed) (/dev/tty50)
[  1586.817] (II) No input driver specified, ignoring this device.
[  1586.817] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty51)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty52)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty53)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty54)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty55)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty56)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.818] (II) config/udev: Adding input device (unnamed) (/dev/tty57)
[  1586.818] (II) No input driver specified, ignoring this device.
[  1586.818] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty58)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty59)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty6)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty60)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty61)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty62)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.819] (II) config/udev: Adding input device (unnamed) (/dev/tty63)
[  1586.819] (II) No input driver specified, ignoring this device.
[  1586.819] (II) This device may have been added with another device file.
[  1586.820] (II) config/udev: Adding input device (unnamed) (/dev/tty7)
[  1586.820] (II) No input driver specified, ignoring this device.
[  1586.820] (II) This device may have been added with another device file.
[  1586.820] (II) config/udev: Adding input device (unnamed) (/dev/tty8)
[  1586.820] (II) No input driver specified, ignoring this device.
[  1586.820] (II) This device may have been added with another device file.
[  1586.820] (II) config/udev: Adding input device (unnamed) (/dev/tty9)
[  1586.820] (II) No input driver specified, ignoring this device.
[  1586.820] (II) This device may have been added with another device file.
[  1586.820] (**) SEM USB Keyboard: Applying InputClass "libinput keyboard catchall"
[  1586.820] (II) Using input driver 'libinput' for 'SEM USB Keyboard'
[  1586.820] (II) systemd-logind: returning pre-existing fd for /dev/input/event1 13:65
[  1586.820] (**) SEM USB Keyboard: always reports core events
[  1586.820] (**) Option "Device" "/dev/input/event1"
[  1586.820] (**) Option "_source" "_driver/libinput"
[  1586.820] (II) libinput: SEM USB Keyboard: is a virtual subdevice
[  1586.820] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.1/0003:1A2C:0E24.0002/input/input4/event1"
[  1586.820] (II) XINPUT: Adding extended input device "SEM USB Keyboard" (type: KEYBOARD, id 12)
[  1586.820] (**) Option "xkb_model" "pc105"
[  1586.820] (**) Option "xkb_layout" "fr"
[  1586.820] (**) Option "xkb_variant" "latin9"
[  1586.821] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "libinput pointer catchall"
[  1586.821] (**) MOSART Semi. 2.4G Keyboard Mouse: Applying InputClass "libinput keyboard catchall"
[  1586.821] (II) Using input driver 'libinput' for 'MOSART Semi. 2.4G Keyboard Mouse'
[  1586.821] (II) systemd-logind: returning pre-existing fd for /dev/input/event3 13:67
[  1586.821] (**) MOSART Semi. 2.4G Keyboard Mouse: always reports core events
[  1586.821] (**) Option "Device" "/dev/input/event3"
[  1586.821] (**) Option "_source" "_driver/libinput"
[  1586.821] (II) libinput: MOSART Semi. 2.4G Keyboard Mouse: is a virtual subdevice
[  1586.821] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.1/usb4/4-1/4-1:1.1/0003:062A:4101.0004/input/input6/event3"
[  1586.821] (II) XINPUT: Adding extended input device "MOSART Semi. 2.4G Keyboard Mouse" (type: KEYBOARD, id 13)
[  1586.821] (**) Option "xkb_model" "pc105"
[  1586.821] (**) Option "xkb_layout" "fr"
[  1586.821] (**) Option "xkb_variant" "latin9"
[  1591.227] (**) Option "fd" "36"
[  1591.227] (II) event5  - Power Button: device removed
[  1591.227] (**) Option "fd" "39"
[  1591.227] (II) event4  - Power Button: device removed
[  1591.228] (**) Option "fd" "40"
[  1591.228] (II) event0  - SEM USB Keyboard: device removed
[  1591.228] (**) Option "fd" "41"
[  1591.228] (**) Option "fd" "42"
[  1591.228] (II) event2  - MOSART Semi. 2.4G Keyboard Mouse: device removed
[  1591.228] (**) Option "fd" "43"
[  1591.228] (**) Option "fd" "41"
[  1591.228] (II) event1  - SEM USB Keyboard: device removed
[  1591.229] (**) Option "fd" "43"
[  1591.229] (II) event3  - MOSART Semi. 2.4G Keyboard Mouse: device removed
[  1591.231] (II) UnloadModule: "libinput"
[  1591.231] (II) systemd-logind: not releasing fd for 13:67, still in use
[  1591.232] (II) UnloadModule: "libinput"
[  1591.232] (II) systemd-logind: not releasing fd for 13:65, still in use
[  1591.232] (II) UnloadModule: "libinput"
[  1591.232] (II) systemd-logind: releasing fd for 13:67
[  1591.264] (II) UnloadModule: "libinput"
[  1591.264] (II) systemd-logind: releasing fd for 13:66
[  1591.280] (II) UnloadModule: "libinput"
[  1591.280] (II) systemd-logind: releasing fd for 13:65
[  1591.300] (II) UnloadModule: "libinput"
[  1591.300] (II) systemd-logind: releasing fd for 13:64
[  1591.328] (II) UnloadModule: "libinput"
[  1591.328] (II) systemd-logind: releasing fd for 13:68
[  1591.352] (II) UnloadModule: "libinput"
[  1591.352] (II) systemd-logind: releasing fd for 13:69
[  1595.224] (II) NVIDIA(GPU-0): Deleting GPU-0
[  1595.227] (II) Server terminated successfully (0). Closing log file.
 


.config/bspwm/bspwmrc

#! /bin/sh

sxhkd &

bspc monitor -d I II III IV V VI VII VIII IX X

bspc config border_width         2
bspc config window_gap          8

bspc config split_ratio          0.52
bspc config borderless_monocle   true
bspc config gapless_monocle      true

bspc rule -a Gimp desktop='^8' state=floating follow=on
bspc rule -a Chromium desktop='^2'
bspc rule -a mplayer2 state=floating
bspc rule -a Kupfer.py focus=on
bspc rule -a Screenkey manage=off>

Dernière modification par evanescente~ondine (10-03-2018 16:18:51)

Hors ligne

Pied de page des forums