You are not logged in.

#1 2023-11-26 21:11:34

Itstimetostop
Member
Registered: 2023-11-26
Posts: 1

Bspwm in virtualbox only refreshing screen when switching workspaces

When starting xorg with startx, I can see the cursor and also start an alacritty terminal and type, but I don't see the written text in the terminal. When switching to another workspace with another terminal and switching back, I can see what I typed before.

Virtualbox guest drivers are installed and also loaded (as seen in the xorg log below) and screen size is correct. Sxhkd works as expected.
System is up to date.

.xinitrc:

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then

    xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then

    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f

# change cursor
xsetroot -cursor_name left_ptr

fi

exec bspwm

twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
exec xterm -geometry 80x66+0+0 -name login

bspwmrc:

#!/bin/bash
#
### MONITORS ###
external_monitor=$(xrandr --query | grep 'HDMI1')

if [[ $external_monitor = HDMI1\ connected* ]]; then
  xrandr --output HDMI1 --auto --primary --output eDP1 --off
  bspc monitor HDMI1 -d 1 2 3 4 5 6 7 8 9 10
else
  xrandr --output Virtual1 --auto
  bspc monitor Virtual1 -d 1 2 3 4 5 6 7 8 9 10
fi

# BSPWM Configuration
_bc() {
  bspc config "$@"
}

# BSPWM Configuration
_bc window_gap                       8
_bc top_padding                      5
_bc top_monocle_padding              0
_bc border_width                     2
_bc bottom_padding                   0
_bc left_padding                     0
_bc right_padding                    0
_bc single_monocle                   false
_bc click_to_focus                   false
_bc split_ratio                      0.50
_bc borderless_monocle               true
_bc gapless_monocle                  true
_bc focus_by_distance                true
_bc paddingless_monocle              true
_bc focus_follows_pointer            true
_bc ignore_ewmh_focus                true
_bc history_aware_focus              true
_bc remove_disabled_monitors         true
_bc pointer_modifier mod1
_bc pointer_action1 move
_bc pointer_action2 resize_side
_bc pointer_action3 resize_corner

# Colors
rosepine_background="#3F3F3F"
rosepine_foreground="#000000"
rosepine_accent="#30302f"
rosepine_active="#848483"
rosepine_focused="#636362"
rosepine_normal="#151513"
_bc normal_border_color "$rosepine_normal"
_bc focused_border_color "$rosepine_focused"
_bc active_border_color "$rosepine_active"

# Rules
bspc rule -a mpv state=tiled
bspc rule -a *:SPLASH state=floating
bspc rule -a Zathura state=tiled
bspc desktop -f 1

# Application start on specific desktop
bspc rule -a discord desktop=^10 state=tiled
bspc rule -a Spotify desktop=^9 state=tiled
bspc rule -a teamspeak3 desktop=^8 state=tiled
bspc rule -a firebird-emu desktop=^4 state=tiled
#bspc rule -a firefox desktop=^3 state=tiled

# Init-Daemons
command -v sxhkd && sxhkd &
command -v picom && picom &
command -v dunst && dunst &
command -v greenclip deamon && greenclip daemon &
setxkbmap -option ctrl:nocaps &

# Autostart
command -v feh && ~/.fehbg &
command -v polybar && polybar &

Xorg.0.log:

[   787.419] 
X.Org X Server 1.21.1.9
X Protocol Version 11, Revision 0
[   787.420] Current Operating System: Linux archlinux 6.6.2-arch1-1 #1 SMP PREEMPT_DYNAMIC Mon, 20 Nov 2023 23:18:21 +0000 x86_64
[   787.420] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=73eeb68c-7ae3-40fa-93c0-1c06b111eecd rw zswap.enabled=0 rootfstype=ext4 loglevel=3 quiet
[   787.420]  
[   787.420] Current version of pixman: 0.42.2
[   787.421] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   787.421] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   787.422] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 26 13:07:14 2023
[   787.422] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   787.422] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   787.422] (==) No Layout section.  Using the first Screen section.
[   787.422] (==) No screen section available. Using defaults.
[   787.422] (**) |-->Screen "Default Screen Section" (0)
[   787.422] (**) |   |-->Monitor "<default monitor>"
[   787.422] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   787.422] (==) Automatically adding devices
[   787.422] (==) Automatically enabling devices
[   787.422] (==) Automatically adding GPU devices
[   787.422] (==) Automatically binding GPU devices
[   787.422] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   787.422] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   787.422] 	Entry deleted from font path.
[   787.422] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[   787.422] 	Entry deleted from font path.
[   787.422] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   787.422] 	Entry deleted from font path.
[   787.422] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   787.422] 	Entry deleted from font path.
[   787.422] (==) FontPath set to:
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[   787.422] (==) ModulePath set to "/usr/lib/xorg/modules"
[   787.422] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   787.422] (II) Module ABI versions:
[   787.422] 	X.Org ANSI C Emulation: 0.4
[   787.422] 	X.Org Video Driver: 25.2
[   787.422] 	X.Org XInput driver : 24.4
[   787.422] 	X.Org Server Extension : 10.0
[   787.424] (--) using VT number 2

[   787.424] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[   787.426] (II) xfree86: Adding drm device (/dev/dri/card0)
[   787.426] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[   787.428] (--) PCI:*(0@0:2:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xe0000000/16777216, 0xf0000000/2097152, I/O @ 0x0000d010/16, BIOS @ 0x????????/131072
[   787.428] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   787.428] (II) LoadModule: "glx"
[   787.428] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   787.429] (II) Module glx: vendor="X.Org Foundation"
[   787.429] 	compiled for 1.21.1.9, module version = 1.0.0
[   787.429] 	ABI class: X.Org Server Extension, version 10.0
[   787.429] (==) Matched vmware as autoconfigured driver 0
[   787.429] (==) Matched modesetting as autoconfigured driver 1
[   787.429] (==) Matched fbdev as autoconfigured driver 2
[   787.429] (==) Matched vesa as autoconfigured driver 3
[   787.429] (==) Assigned the driver to the xf86ConfigLayout
[   787.429] (II) LoadModule: "vmware"
[   787.429] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
[   787.443] (II) Module vmware: vendor="X.Org Foundation"
[   787.443] 	compiled for 1.21.1.6, module version = 13.4.0
[   787.443] 	Module class: X.Org Video Driver
[   787.443] 	ABI class: X.Org Video Driver, version 25.2
[   787.443] (II) LoadModule: "modesetting"
[   787.443] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   787.444] (II) Module modesetting: vendor="X.Org Foundation"
[   787.444] 	compiled for 1.21.1.9, module version = 1.21.1
[   787.444] 	Module class: X.Org Video Driver
[   787.444] 	ABI class: X.Org Video Driver, version 25.2
[   787.444] (II) LoadModule: "fbdev"
[   787.444] (WW) Warning, couldn't open module fbdev
[   787.444] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   787.444] (II) LoadModule: "vesa"
[   787.444] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[   787.444] (II) Module vesa: vendor="X.Org Foundation"
[   787.444] 	compiled for 1.21.1.4, module version = 2.6.0
[   787.444] 	Module class: X.Org Video Driver
[   787.444] 	ABI class: X.Org Video Driver, version 25.2
[   787.444] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
[   787.444] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   787.444] (II) VESA: driver for VESA chipsets: vesa
[   787.446] (WW) Falling back to old probe method for modesetting
[   787.446] (II) vmware(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   787.446] (--) vmware(0): DRM driver version is 2.20.0
[   787.446] (==) vmware(0): Depth 24, (--) framebuffer bpp 32
[   787.446] (==) vmware(0): RGB weight 888
[   787.446] (==) vmware(0): Default visual is TrueColor
[   787.446] (--) vmware(0): Min width 1, Max Width 8192.
[   787.446] (--) vmware(0): Min height 1, Max Height 8192.
[   787.446] (II) vmware(0): Output Virtual1 has no monitor section
[   787.447] (II) vmware(0): Output Virtual2 has no monitor section
[   787.447] (II) vmware(0): Output Virtual3 has no monitor section
[   787.447] (II) vmware(0): Output Virtual4 has no monitor section
[   787.447] (II) vmware(0): Output Virtual5 has no monitor section
[   787.447] (II) vmware(0): Output Virtual6 has no monitor section
[   787.447] (II) vmware(0): Output Virtual7 has no monitor section
[   787.447] (II) vmware(0): Output Virtual8 has no monitor section
[   787.447] (II) vmware(0): Printing probed modes for output Virtual1
[   787.447] (II) vmware(0): Modeline "1280x800"x60.0   81.51  1280 1330 1380 1430  800 850 900 950 -hsync +vsync (57.0 kHz eP)
[   787.447] (II) vmware(0): Modeline "2560x1600"x60.0  348.50  2560 2752 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz e)
[   787.447] (II) vmware(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[   787.447] (II) vmware(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz e)
[   787.447] (II) vmware(0): Modeline "1856x1392"x60.0  218.25  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.3 kHz e)
[   787.447] (II) vmware(0): Modeline "1792x1344"x60.0  204.75  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.6 kHz e)
[   787.447] (II) vmware(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz e)
[   787.447] (II) vmware(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz e)
[   787.447] (II) vmware(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   787.447] (II) vmware(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[   787.447] (II) vmware(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
[   787.447] (II) vmware(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   787.447] (II) vmware(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[   787.447] (II) vmware(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   787.447] (II) vmware(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[   787.447] (II) vmware(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[   787.447] (II) vmware(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[   787.447] (II) vmware(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[   787.447] (II) vmware(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz e)
[   787.447] (II) vmware(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   787.447] (II) vmware(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   787.447] (II) vmware(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[   787.447] (II) vmware(0): EDID for output Virtual2
[   787.447] (II) vmware(0): EDID for output Virtual3
[   787.447] (II) vmware(0): EDID for output Virtual4
[   787.447] (II) vmware(0): EDID for output Virtual5
[   787.447] (II) vmware(0): EDID for output Virtual6
[   787.447] (II) vmware(0): EDID for output Virtual7
[   787.447] (II) vmware(0): EDID for output Virtual8
[   787.447] (II) vmware(0): Output Virtual1 connected
[   787.447] (II) vmware(0): Output Virtual2 disconnected
[   787.447] (II) vmware(0): Output Virtual3 disconnected
[   787.447] (II) vmware(0): Output Virtual4 disconnected
[   787.447] (II) vmware(0): Output Virtual5 disconnected
[   787.447] (II) vmware(0): Output Virtual6 disconnected
[   787.447] (II) vmware(0): Output Virtual7 disconnected
[   787.447] (II) vmware(0): Output Virtual8 disconnected
[   787.447] (II) vmware(0): Using exact sizes for initial modes
[   787.447] (II) vmware(0): Output Virtual1 using initial mode 1280x800 +0+0
[   787.447] (==) vmware(0): DPI set to (96, 96)
[   787.447] (==) vmware(0): Using gamma correction (1.0, 1.0, 1.0)
[   787.447] (II) Loading sub module "fb"
[   787.447] (II) LoadModule: "fb"
[   787.447] (II) Module "fb" already built-in
[   787.447] (II) Loading sub module "dri2"
[   787.447] (II) LoadModule: "dri2"
[   787.447] (II) Module "dri2" already built-in
[   787.447] (II) Loading sub module "dri3"
[   787.447] (II) LoadModule: "dri3"
[   787.447] (II) Module "dri3" already built-in
[   787.447] (II) UnloadModule: "modesetting"
[   787.447] (II) Unloading modesetting
[   787.447] (II) UnloadModule: "vesa"
[   787.447] (II) Unloading vesa
[   787.447] (II) vmware(0): Initialized VMWARE_CTRL extension version 0.2
[   787.449] (WW) vmware(0): Failed to initialize Gallium3D Xa. No render acceleration available.
[   787.449] (WW) vmware(0): Skipped initialization of direct rendering due to lack of render acceleration.
[   787.449] (--) vmware(0): Render acceleration is disabled.
[   787.449] (==) vmware(0): Rendercheck mode is disabled.
[   787.449] (--) vmware(0): Direct rendering (DRI2 3D) is disabled.
[   787.449] (--) vmware(0): Direct rendering (DRI3 3D) is disabled.
[   787.449] (==) vmware(0): Backing store enabled
[   787.449] (==) vmware(0): Silken mouse enabled
[   787.449] (==) vmware(0): DPMS enabled
[   787.449] (II) vmware(0): No 3D acceleration. Not setting up textured video.
[   787.449] (WW) vmware(0): Disabling Xv because no adaptors could be initialized.
[   787.449] (II) Initializing extension Generic Event Extension
[   787.449] (II) Initializing extension SHAPE
[   787.449] (II) Initializing extension MIT-SHM
[   787.449] (II) Initializing extension XInputExtension
[   787.449] (II) Initializing extension XTEST
[   787.449] (II) Initializing extension BIG-REQUESTS
[   787.449] (II) Initializing extension SYNC
[   787.450] (II) Initializing extension XKEYBOARD
[   787.450] (II) Initializing extension XC-MISC
[   787.450] (II) Initializing extension SECURITY
[   787.450] (II) Initializing extension XFIXES
[   787.450] (II) Initializing extension RENDER
[   787.450] (II) Initializing extension RANDR
[   787.450] (II) Initializing extension COMPOSITE
[   787.450] (II) Initializing extension DAMAGE
[   787.451] (II) Initializing extension MIT-SCREEN-SAVER
[   787.451] (II) Initializing extension DOUBLE-BUFFER
[   787.451] (II) Initializing extension RECORD
[   787.451] (II) Initializing extension DPMS
[   787.451] (II) Initializing extension Present
[   787.451] (II) Initializing extension DRI3
[   787.451] (II) Initializing extension X-Resource
[   787.451] (II) Initializing extension XVideo
[   787.451] (II) Initializing extension XVideo-MotionCompensation
[   787.451] (II) Initializing extension GLX
[   787.451] (II) AIGLX: Screen 0 is not DRI2 capable
[   787.457] (II) IGLX: Loaded and initialized swrast
[   787.457] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[   787.457] (II) Initializing extension XFree86-VidModeExtension
[   787.457] (II) Initializing extension XFree86-DGA
[   787.457] (II) Initializing extension XFree86-DRI
[   787.457] (II) Initializing extension DRI2
[   787.459] (II) vmware(0): Setting screen physical size to 338 x 211
[   787.536] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   787.536] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   787.536] (**) Power Button: Applying InputClass "system-keyboard"
[   787.536] (II) LoadModule: "libinput"
[   787.536] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   787.537] (II) Module libinput: vendor="X.Org Foundation"
[   787.537] 	compiled for 1.21.1.8, module version = 1.4.0
[   787.537] 	Module class: X.Org XInput Driver
[   787.537] 	ABI class: X.Org XInput driver, version 24.4
[   787.537] (II) Using input driver 'libinput' for 'Power Button'
[   787.537] (**) Power Button: always reports core events
[   787.537] (**) Option "Device" "/dev/input/event0"
[   787.538] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   787.538] (II) event0  - Power Button: device is a keyboard
[   787.538] (II) event0  - Power Button: device removed
[   787.543] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0/event0"
[   787.543] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   787.543] (**) Option "xkb_model" "pc105"
[   787.543] (**) Option "xkb_layout" "de"
[   787.543] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   787.566] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   787.566] (II) event0  - Power Button: device is a keyboard
[   787.567] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[   787.567] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[   787.567] (**) Sleep Button: Applying InputClass "system-keyboard"
[   787.567] (II) Using input driver 'libinput' for 'Sleep Button'
[   787.567] (**) Sleep Button: always reports core events
[   787.567] (**) Option "Device" "/dev/input/event1"
[   787.567] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[   787.567] (II) event1  - Sleep Button: device is a keyboard
[   787.567] (II) event1  - Sleep Button: device removed
[   787.573] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1/event1"
[   787.573] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
[   787.573] (**) Option "xkb_model" "pc105"
[   787.573] (**) Option "xkb_layout" "de"
[   787.573] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   787.574] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[   787.574] (II) event1  - Sleep Button: device is a keyboard
[   787.574] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[   787.574] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[   787.574] (**) Video Bus: Applying InputClass "system-keyboard"
[   787.574] (II) Using input driver 'libinput' for 'Video Bus'
[   787.574] (**) Video Bus: always reports core events
[   787.574] (**) Option "Device" "/dev/input/event4"
[   787.575] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[   787.575] (II) event4  - Video Bus: device is a keyboard
[   787.575] (II) event4  - Video Bus: device removed
[   787.593] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input5/event4"
[   787.593] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[   787.593] (**) Option "xkb_model" "pc105"
[   787.593] (**) Option "xkb_layout" "de"
[   787.593] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   787.594] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[   787.594] (II) event4  - Video Bus: device is a keyboard
[   787.595] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/event5)
[   787.595] (**) VirtualBox mouse integration: Applying InputClass "libinput pointer catchall"
[   787.595] (II) Using input driver 'libinput' for 'VirtualBox mouse integration'
[   787.595] (**) VirtualBox mouse integration: always reports core events
[   787.595] (**) Option "Device" "/dev/input/event5"
[   787.596] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[   787.596] (II) event5  - VirtualBox mouse integration: device is a pointer
[   787.596] (II) event5  - VirtualBox mouse integration: device removed
[   787.613] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/input/input6/event5"
[   787.613] (II) XINPUT: Adding extended input device "VirtualBox mouse integration" (type: MOUSE, id 9)
[   787.613] (**) Option "AccelerationScheme" "none"
[   787.613] (**) VirtualBox mouse integration: (accel) selected scheme none/0
[   787.613] (**) VirtualBox mouse integration: (accel) acceleration factor: 2.000
[   787.613] (**) VirtualBox mouse integration: (accel) acceleration threshold: 4
[   787.614] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[   787.614] (II) event5  - VirtualBox mouse integration: device is a pointer
[   787.614] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/js1)
[   787.615] (II) No input driver specified, ignoring this device.
[   787.615] (II) This device may have been added with another device file.
[   787.615] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/mouse1)
[   787.615] (II) No input driver specified, ignoring this device.
[   787.615] (II) This device may have been added with another device file.
[   787.616] (II) config/udev: Adding input device VirtualBox USB Tablet (/dev/input/event2)
[   787.616] (**) VirtualBox USB Tablet: Applying InputClass "libinput pointer catchall"
[   787.616] (II) Using input driver 'libinput' for 'VirtualBox USB Tablet'
[   787.616] (**) VirtualBox USB Tablet: always reports core events
[   787.616] (**) Option "Device" "/dev/input/event2"
[   787.671] (II) event2  - VirtualBox USB Tablet: is tagged by udev as: Mouse
[   787.671] (II) event2  - VirtualBox USB Tablet: device is a pointer
[   787.672] (II) event2  - VirtualBox USB Tablet: device removed
[   787.706] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/0003:80EE:0021.0001/input/input2/event2"
[   787.706] (II) XINPUT: Adding extended input device "VirtualBox USB Tablet" (type: MOUSE, id 10)
[   787.706] (**) Option "AccelerationScheme" "none"
[   787.706] (**) VirtualBox USB Tablet: (accel) selected scheme none/0
[   787.706] (**) VirtualBox USB Tablet: (accel) acceleration factor: 2.000
[   787.706] (**) VirtualBox USB Tablet: (accel) acceleration threshold: 4
[   787.764] (II) event2  - VirtualBox USB Tablet: is tagged by udev as: Mouse
[   787.764] (II) event2  - VirtualBox USB Tablet: device is a pointer
[   787.765] (II) config/udev: Adding input device VirtualBox USB Tablet (/dev/input/js0)
[   787.765] (II) No input driver specified, ignoring this device.
[   787.765] (II) This device may have been added with another device file.
[   787.766] (II) config/udev: Adding input device VirtualBox USB Tablet (/dev/input/mouse0)
[   787.766] (II) No input driver specified, ignoring this device.
[   787.766] (II) This device may have been added with another device file.
[   787.766] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[   787.766] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[   787.766] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[   787.766] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[   787.766] (**) AT Translated Set 2 keyboard: always reports core events
[   787.766] (**) Option "Device" "/dev/input/event3"
[   787.767] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[   787.767] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[   787.768] (II) event3  - AT Translated Set 2 keyboard: device removed
[   787.773] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[   787.773] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[   787.773] (**) Option "xkb_model" "pc105"
[   787.773] (**) Option "xkb_layout" "de"
[   787.773] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   787.774] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[   787.774] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[   787.775] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/event7)
[   787.775] (**) ImExPS/2 Generic Explorer Mouse: Applying InputClass "libinput pointer catchall"
[   787.775] (II) Using input driver 'libinput' for 'ImExPS/2 Generic Explorer Mouse'
[   787.775] (**) ImExPS/2 Generic Explorer Mouse: always reports core events
[   787.775] (**) Option "Device" "/dev/input/event7"
[   787.776] (II) event7  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[   787.776] (II) event7  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[   787.777] (II) event7  - ImExPS/2 Generic Explorer Mouse: device removed
[   787.793] (II) libinput: ImExPS/2 Generic Explorer Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   787.793] (II) libinput: ImExPS/2 Generic Explorer Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   787.793] (II) libinput: ImExPS/2 Generic Explorer Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   787.793] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event7"
[   787.793] (II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE, id 12)
[   787.793] (**) Option "AccelerationScheme" "none"
[   787.793] (**) ImExPS/2 Generic Explorer Mouse: (accel) selected scheme none/0
[   787.793] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration factor: 2.000
[   787.793] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration threshold: 4
[   787.794] (II) event7  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[   787.794] (II) event7  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[   787.795] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/mouse2)
[   787.795] (II) No input driver specified, ignoring this device.
[   787.795] (II) This device may have been added with another device file.
[   787.795] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[   787.795] (II) No input driver specified, ignoring this device.
[   787.795] (II) This device may have been added with another device file.
[   787.819] (II) event0  - Power Button: device removed
[   787.820] (II) event1  - Sleep Button: device removed
[   787.820] (II) event4  - Video Bus: device removed
[   787.840] (II) event5  - VirtualBox mouse integration: device removed
[   787.860] (II) event2  - VirtualBox USB Tablet: device removed
[   787.893] (II) event3  - AT Translated Set 2 keyboard: device removed
[   787.903] (II) event7  - ImExPS/2 Generic Explorer Mouse: device removed
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.924] (II) UnloadModule: "libinput"
[   787.930] (II) Server terminated successfully (0). Closing log file.

Offline

Board footer

Powered by FluxBB