您尚未登录。

#1 2021-09-02 13:34:05

Dueot
会员
注册时间: 2019-10-26
帖子: 6

安装 bspwm,使用 startx 启动后黑屏

安装情况
  1. 实体机安装,Intel 10870H,无独显;

  2. 显卡驱动为  mesa,尝试  xf86-video-intel 问题依旧;

  3. 仅安装了  xorg-server 及其依赖,无其他(xorg-apps等);

  4. xorg 无自定义配置文件,使用默认配置;

  5. 安装 bspwm 和 sxhkd

  6. 安装示例 bspwmrc 和 sxhkdrc 分别到 ~/.config/bspwm/ 和 ~/.config/sxhkd/,并具有执行权限;

  7. 安装  xorg-xinit,并复制默认配置到 ~/.xinitrc;

  8. 在 ~/.xinitrc 中注释 twm 及 xterm,并加入 bspwm;

代码及日志

首先是 .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
fi

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

# urxvt &
sxhkd &
exec bspwm>~/.bspwm.log 2>&1

Xorg 日志如下:

[  1011.427] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[  1011.432] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[  1011.435] Build Operating System: Linux Archlinux
[  1011.435] Current Operating System: Linux localarchlinux 5.13.13-arch1-1 #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000 x86_64
[  1011.435] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=5ba6f5f3-f600-482b-aa67-b33d270b6f15 rw loglevel=3 quiet
[  1011.437] Build Date: 04 August 2021  08:13:54AM
[  1011.438]  
[  1011.439] Current version of pixman: 0.40.0
[  1011.440] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1011.440] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1011.443] (==) Log file: "/home/linuxer/.local/share/xorg/Xorg.0.log", Time: Thu Sep  2 12:26:44 2021
[  1011.447] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1011.447] (==) No Layout section.  Using the first Screen section.
[  1011.447] (==) No screen section available. Using defaults.
[  1011.447] (**) |-->Screen "Default Screen Section" (0)
[  1011.447] (**) |   |-->Monitor "<default monitor>"
[  1011.447] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  1011.447] (==) Automatically adding devices
[  1011.447] (==) Automatically enabling devices
[  1011.447] (==) Automatically adding GPU devices
[  1011.447] (==) Automatically binding GPU devices
[  1011.447] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1011.447] (WW) The directory "/usr/share/fonts/misc" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[  1011.447] 	Entry deleted from font path.
[  1011.447] (==) FontPath set to:
	
[  1011.447] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1011.447] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1011.447] (II) Module ABI versions:
[  1011.447] 	X.Org ANSI C Emulation: 0.4
[  1011.447] 	X.Org Video Driver: 24.1
[  1011.447] 	X.Org XInput driver : 24.1
[  1011.447] 	X.Org Server Extension : 10.0
[  1011.448] (++) using VT number 1

[  1011.449] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[  1011.449] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1011.449] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[  1011.450] (--) PCI:*(0@0:2:0) 8086:9bc4:8086:2212 rev 5, Mem @ 0xb0000000/16777216, 0xa0000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[  1011.450] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1011.450] (II) LoadModule: "glx"
[  1011.451] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1011.455] (II) Module glx: vendor="X.Org Foundation"
[  1011.455] 	compiled for 1.20.13, module version = 1.0.0
[  1011.455] 	ABI class: X.Org Server Extension, version 10.0
[  1011.455] (==) Matched intel as autoconfigured driver 0
[  1011.455] (==) Matched modesetting as autoconfigured driver 1
[  1011.455] (==) Matched fbdev as autoconfigured driver 2
[  1011.455] (==) Matched vesa as autoconfigured driver 3
[  1011.455] (==) Assigned the driver to the xf86ConfigLayout
[  1011.455] (II) LoadModule: "intel"
[  1011.455] (WW) Warning, couldn't open module intel
[  1011.455] (EE) Failed to load module "intel" (module does not exist, 0)
[  1011.455] (II) LoadModule: "modesetting"
[  1011.455] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[  1011.456] (II) Module modesetting: vendor="X.Org Foundation"
[  1011.456] 	compiled for 1.20.13, module version = 1.20.13
[  1011.456] 	Module class: X.Org Video Driver
[  1011.456] 	ABI class: X.Org Video Driver, version 24.1
[  1011.456] (II) LoadModule: "fbdev"
[  1011.456] (WW) Warning, couldn't open module fbdev
[  1011.456] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  1011.456] (II) LoadModule: "vesa"
[  1011.456] (WW) Warning, couldn't open module vesa
[  1011.456] (EE) Failed to load module "vesa" (module does not exist, 0)
[  1011.456] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  1011.457] (II) modeset(0): using drv /dev/dri/card0
[  1011.457] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[  1011.457] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  1011.457] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[  1011.457] (==) modeset(0): RGB weight 888
[  1011.457] (==) modeset(0): Default visual is TrueColor
[  1011.457] (II) Loading sub module "glamoregl"
[  1011.457] (II) LoadModule: "glamoregl"
[  1011.457] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[  1011.460] (II) Module glamoregl: vendor="X.Org Foundation"
[  1011.460] 	compiled for 1.20.13, module version = 1.0.1
[  1011.460] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1011.608] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[  1011.608] (II) modeset(0): glamor initialized
[  1011.660] (II) modeset(0): Output DP-1 has no monitor section
[  1011.660] (II) modeset(0): Output DP-2 has no monitor section
[  1011.671] (II) modeset(0): Output HDMI-1 has no monitor section
[  1011.716] (II) modeset(0): EDID for output DP-1
[  1011.716] (II) modeset(0): Manufacturer: AOC  Model: 2490  Serial#: 478
[  1011.716] (II) modeset(0): Year: 2017  Week: 44
[  1011.716] (II) modeset(0): EDID Version: 1.3
[  1011.716] (II) modeset(0): Digital Display Input
[  1011.716] (II) modeset(0): Max Image Size [cm]: horiz.: 53  vert.: 30
[  1011.716] (II) modeset(0): Gamma: 2.20
[  1011.716] (II) modeset(0): DPMS capabilities: Off
[  1011.716] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[  1011.716] (II) modeset(0): First detailed timing is preferred mode
[  1011.716] (II) modeset(0): redX: 0.647 redY: 0.333   greenX: 0.308 greenY: 0.614
[  1011.716] (II) modeset(0): blueX: 0.153 blueY: 0.046   whiteX: 0.313 whiteY: 0.329
[  1011.716] (II) modeset(0): Supported established timings:
[  1011.716] (II) modeset(0): 720x400@70Hz
[  1011.716] (II) modeset(0): 640x480@60Hz
[  1011.716] (II) modeset(0): 640x480@67Hz
[  1011.716] (II) modeset(0): 640x480@72Hz
[  1011.716] (II) modeset(0): 640x480@75Hz
[  1011.716] (II) modeset(0): 800x600@56Hz
[  1011.716] (II) modeset(0): 800x600@60Hz
[  1011.716] (II) modeset(0): 800x600@72Hz
[  1011.716] (II) modeset(0): 800x600@75Hz
[  1011.716] (II) modeset(0): 832x624@75Hz
[  1011.716] (II) modeset(0): 1024x768@60Hz
[  1011.716] (II) modeset(0): 1024x768@70Hz
[  1011.716] (II) modeset(0): 1024x768@75Hz
[  1011.716] (II) modeset(0): 1280x1024@75Hz
[  1011.716] (II) modeset(0): Manufacturer's mask: 0
[  1011.716] (II) modeset(0): Supported standard timings:
[  1011.716] (II) modeset(0): #0: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[  1011.716] (II) modeset(0): #1: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[  1011.716] (II) modeset(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[  1011.716] (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[  1011.716] (II) modeset(0): #4: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[  1011.716] (II) modeset(0): #5: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[  1011.716] (II) modeset(0): Supported detailed timing:
[  1011.716] (II) modeset(0): clock: 241.5 MHz   Image Size:  527 x 296 mm
[  1011.716] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[  1011.716] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[  1011.716] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 30 H max: 99 kHz, PixClock max 305 MHz
[  1011.716] (II) modeset(0): Monitor name: Q2490W1
[  1011.716] (II) modeset(0): Serial No: AP90744Z00478
[  1011.716] (II) modeset(0): Supported detailed timing:
[  1011.716] (II) modeset(0): clock: 148.5 MHz   Image Size:  527 x 296 mm
[  1011.716] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[  1011.716] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[  1011.716] (II) modeset(0): Supported detailed timing:
[  1011.716] (II) modeset(0): clock: 74.2 MHz   Image Size:  527 x 296 mm
[  1011.716] (II) modeset(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[  1011.716] (II) modeset(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[  1011.716] (II) modeset(0): Supported detailed timing:
[  1011.716] (II) modeset(0): clock: 27.0 MHz   Image Size:  527 x 296 mm
[  1011.717] (II) modeset(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[  1011.717] (II) modeset(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[  1011.717] (II) modeset(0): Supported detailed timing:
[  1011.717] (II) modeset(0): clock: 27.0 MHz   Image Size:  527 x 296 mm
[  1011.717] (II) modeset(0): h_active: 720  h_sync: 732  h_sync_end 796 h_blank_end 864 h_border: 0
[  1011.717] (II) modeset(0): v_active: 576  v_sync: 581  v_sync_end 586 v_blanking: 625 v_border: 0
[  1011.717] (II) modeset(0): Supported detailed timing:
[  1011.717] (II) modeset(0): clock: 156.0 MHz   Image Size:  527 x 296 mm
[  1011.717] (II) modeset(0): h_active: 1280  h_sync: 1376  h_sync_end 1512 h_blank_end 1744 h_border: 0
[  1011.717] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1453 v_blanking: 1493 v_border: 0
[  1011.717] (II) modeset(0): Number of EDID sections to follow: 1
[  1011.717] (II) modeset(0): EDID (in hex):
[  1011.717] (II) modeset(0): 	00ffffffffffff0005e39024de010000
[  1011.717] (II) modeset(0): 	2c1b010380351e782add75a5554e9d27
[  1011.717] (II) modeset(0): 	0b5054bfef00d1c0b300950081808140
[  1011.717] (II) modeset(0): 	81c001010101565e00a0a0a029503020
[  1011.717] (II) modeset(0): 	35000f282100001e000000fd00324c1e
[  1011.717] (II) modeset(0): 	631e000a202020202020000000fc0051
[  1011.717] (II) modeset(0): 	3234393057310a2020202020000000ff
[  1011.717] (II) modeset(0): 	00415039303734345a30303437380100
[  1011.717] (II) modeset(0): 	02031ef14b101f051404130312021101
[  1011.717] (II) modeset(0): 	230907078301000065030c001000023a
[  1011.717] (II) modeset(0): 	801871382d40582c45000f282100001e
[  1011.717] (II) modeset(0): 	011d007251d01e206e2855000f282100
[  1011.717] (II) modeset(0): 	001e8c0ad08a20e02d10103e96000f28
[  1011.717] (II) modeset(0): 	210000188c0ad090204031200c405500
[  1011.717] (II) modeset(0): 	0f2821000018f03c00d051a035506088
[  1011.717] (II) modeset(0): 	3a000f282100001c000000000000001d
[  1011.717] (II) modeset(0): Printing probed modes for output DP-1
[  1011.717] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync +vsync (88.8 kHz eP)
[  1011.717] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[  1011.717] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[  1011.717] (II) modeset(0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[  1011.717] (II) modeset(0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[  1011.717] (II) modeset(0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x1440"x59.9  156.00  1280 1376 1512 1744  1440 1443 1453 1493 -hsync +vsync (89.4 kHz e)
[  1011.717] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  1011.717] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[  1011.717] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[  1011.717] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[  1011.717] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  1011.717] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[  1011.717] (II) modeset(0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[  1011.717] (II) modeset(0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[  1011.717] (II) modeset(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[  1011.717] (II) modeset(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  1011.717] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  1011.717] (II) modeset(0): EDID for output DP-2
[  1011.728] (II) modeset(0): EDID for output HDMI-1
[  1011.728] (II) modeset(0): Output DP-1 connected
[  1011.728] (II) modeset(0): Output DP-2 disconnected
[  1011.728] (II) modeset(0): Output HDMI-1 disconnected
[  1011.728] (II) modeset(0): Using exact sizes for initial modes
[  1011.728] (II) modeset(0): Output DP-1 using initial mode 2560x1440 +0+0
[  1011.728] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[  1011.728] (==) modeset(0): DPI set to (96, 96)
[  1011.728] (II) Loading sub module "fb"
[  1011.728] (II) LoadModule: "fb"
[  1011.728] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1011.739] (II) Module fb: vendor="X.Org Foundation"
[  1011.739] 	compiled for 1.20.13, module version = 1.0.0
[  1011.739] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1011.771] (==) modeset(0): Backing store enabled
[  1011.771] (==) modeset(0): Silken mouse disabled
[  1011.905] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[  1011.905] (==) modeset(0): DPMS enabled
[  1011.906] (II) modeset(0): [DRI2] Setup complete
[  1011.906] (II) modeset(0): [DRI2]   DRI driver: iris
[  1011.906] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[  1011.906] (II) Initializing extension Generic Event Extension
[  1011.906] (II) Initializing extension SHAPE
[  1011.906] (II) Initializing extension MIT-SHM
[  1011.906] (II) Initializing extension XInputExtension
[  1011.906] (II) Initializing extension XTEST
[  1011.906] (II) Initializing extension BIG-REQUESTS
[  1011.906] (II) Initializing extension SYNC
[  1011.906] (II) Initializing extension XKEYBOARD
[  1011.906] (II) Initializing extension XC-MISC
[  1011.906] (II) Initializing extension SECURITY
[  1011.906] (II) Initializing extension XFIXES
[  1011.906] (II) Initializing extension RENDER
[  1011.906] (II) Initializing extension RANDR
[  1011.906] (II) Initializing extension COMPOSITE
[  1011.906] (II) Initializing extension DAMAGE
[  1011.906] (II) Initializing extension MIT-SCREEN-SAVER
[  1011.906] (II) Initializing extension DOUBLE-BUFFER
[  1011.906] (II) Initializing extension RECORD
[  1011.906] (II) Initializing extension DPMS
[  1011.906] (II) Initializing extension Present
[  1011.906] (II) Initializing extension DRI3
[  1011.906] (II) Initializing extension X-Resource
[  1011.906] (II) Initializing extension XVideo
[  1011.906] (II) Initializing extension XVideo-MotionCompensation
[  1011.906] (II) Initializing extension GLX
[  1011.922] (II) AIGLX: Loaded and initialized iris
[  1011.922] (II) GLX: Initialized DRI2 GL provider for screen 0
[  1011.922] (II) Initializing extension XFree86-VidModeExtension
[  1011.922] (II) Initializing extension XFree86-DGA
[  1011.922] (II) Initializing extension XFree86-DRI
[  1011.922] (II) Initializing extension DRI2
[  1011.923] (II) modeset(0): Damage tracking initialized
[  1011.923] (II) modeset(0): Setting screen physical size to 677 x 381
[  1012.006] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  1012.006] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1012.006] (II) LoadModule: "libinput"
[  1012.006] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  1012.023] (II) Module libinput: vendor="X.Org Foundation"
[  1012.023] 	compiled for 1.20.11, module version = 1.1.0
[  1012.023] 	Module class: X.Org XInput Driver
[  1012.023] 	ABI class: X.Org XInput driver, version 24.1
[  1012.023] (II) Using input driver 'libinput' for 'Power Button'
[  1012.024] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 19 paused 0
[  1012.024] (**) Power Button: always reports core events
[  1012.024] (**) Option "Device" "/dev/input/event2"
[  1012.024] (**) Option "_source" "server/udev"
[  1012.035] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  1012.035] (II) event2  - Power Button: device is a keyboard
[  1012.035] (II) event2  - Power Button: device removed
[  1012.035] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[  1012.035] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1012.036] (II) event2  - Power Button: is tagged by udev as: Keyboard
[  1012.036] (II) event2  - Power Button: device is a keyboard
[  1012.037] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[  1012.037] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[  1012.037] (II) Using input driver 'libinput' for 'Video Bus'
[  1012.038] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 22 paused 0
[  1012.038] (**) Video Bus: always reports core events
[  1012.038] (**) Option "Device" "/dev/input/event4"
[  1012.038] (**) Option "_source" "server/udev"
[  1012.039] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[  1012.039] (II) event4  - Video Bus: device is a keyboard
[  1012.039] (II) event4  - Video Bus: device removed
[  1012.039] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4/event4"
[  1012.039] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[  1012.040] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[  1012.040] (II) event4  - Video Bus: device is a keyboard
[  1012.041] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  1012.041] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1012.041] (II) Using input driver 'libinput' for 'Power Button'
[  1012.042] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 23 paused 0
[  1012.042] (**) Power Button: always reports core events
[  1012.042] (**) Option "Device" "/dev/input/event1"
[  1012.042] (**) Option "_source" "server/udev"
[  1012.042] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1012.043] (II) event1  - Power Button: device is a keyboard
[  1012.043] (II) event1  - Power Button: device removed
[  1012.043] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[  1012.043] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[  1012.044] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1012.044] (II) event1  - Power Button: device is a keyboard
[  1012.044] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[  1012.044] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[  1012.044] (II) Using input driver 'libinput' for 'Sleep Button'
[  1012.045] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 24 paused 0
[  1012.045] (**) Sleep Button: always reports core events
[  1012.045] (**) Option "Device" "/dev/input/event0"
[  1012.045] (**) Option "_source" "server/udev"
[  1012.046] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  1012.046] (II) event0  - Sleep Button: device is a keyboard
[  1012.046] (II) event0  - Sleep Button: device removed
[  1012.046] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[  1012.046] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[  1012.047] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[  1012.047] (II) event0  - Sleep Button: device is a keyboard
[  1012.048] (II) config/udev: Adding input device DP-1 (/dev/input/event5)
[  1012.048] (**) DP-1: Applying InputClass "libinput keyboard catchall"
[  1012.048] (II) Using input driver 'libinput' for 'DP-1'
[  1012.049] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 25 paused 0
[  1012.049] (**) DP-1: always reports core events
[  1012.049] (**) Option "Device" "/dev/input/event5"
[  1012.049] (**) Option "_source" "server/udev"
[  1012.050] (II) event5  - DP-1: is tagged by udev as: Keyboard Pointingstick
[  1012.050] (II) event5  - DP-1: device is a pointer
[  1012.050] (II) event5  - DP-1: device is a keyboard
[  1012.051] (II) event5  - DP-1: device removed
[  1012.051] (II) libinput: DP-1: needs a virtual subdevice
[  1012.051] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/rc/rc0/input5/event5"
[  1012.051] (II) XINPUT: Adding extended input device "DP-1" (type: MOUSE, id 10)
[  1012.051] (**) Option "AccelerationScheme" "none"
[  1012.051] (**) DP-1: (accel) selected scheme none/0
[  1012.051] (**) DP-1: (accel) acceleration factor: 2.000
[  1012.051] (**) DP-1: (accel) acceleration threshold: 4
[  1012.052] (II) event5  - DP-1: is tagged by udev as: Keyboard Pointingstick
[  1012.052] (II) event5  - DP-1: device is a pointer
[  1012.052] (II) event5  - DP-1: device is a keyboard
[  1012.054] (II) config/udev: Adding input device Logitech B330/M330/M331 (/dev/input/event18)
[  1012.054] (**) Logitech B330/M330/M331: Applying InputClass "libinput pointer catchall"
[  1012.054] (II) Using input driver 'libinput' for 'Logitech B330/M330/M331'
[  1012.054] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 26 paused 0
[  1012.054] (**) Logitech B330/M330/M331: always reports core events
[  1012.054] (**) Option "Device" "/dev/input/event18"
[  1012.054] (**) Option "_source" "server/udev"
[  1012.056] (II) event18 - Logitech B330/M330/M331: is tagged by udev as: Mouse
[  1012.056] (II) event18 - Logitech B330/M330/M331: device is a pointer
[  1012.057] (II) event18 - Logitech B330/M330/M331: device removed
[  1012.057] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0006/0003:046D:4057.0009/input/input36/event18"
[  1012.057] (II) XINPUT: Adding extended input device "Logitech B330/M330/M331" (type: MOUSE, id 11)
[  1012.057] (**) Option "AccelerationScheme" "none"
[  1012.057] (**) Logitech B330/M330/M331: (accel) selected scheme none/0
[  1012.057] (**) Logitech B330/M330/M331: (accel) acceleration factor: 2.000
[  1012.057] (**) Logitech B330/M330/M331: (accel) acceleration threshold: 4
[  1012.058] (II) event18 - Logitech B330/M330/M331: is tagged by udev as: Mouse
[  1012.058] (II) event18 - Logitech B330/M330/M331: device is a pointer
[  1012.059] (II) config/udev: Adding input device Logitech B330/M330/M331 (/dev/input/mouse2)
[  1012.059] (II) No input driver specified, ignoring this device.
[  1012.059] (II) This device may have been added with another device file.
[  1012.060] (II) config/udev: Adding input device Logitech K780 (/dev/input/event16)
[  1012.060] (**) Logitech K780: Applying InputClass "libinput keyboard catchall"
[  1012.060] (II) Using input driver 'libinput' for 'Logitech K780'
[  1012.061] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 27 paused 0
[  1012.061] (**) Logitech K780: always reports core events
[  1012.061] (**) Option "Device" "/dev/input/event16"
[  1012.061] (**) Option "_source" "server/udev"
[  1012.062] (II) event16 - Logitech K780: is tagged by udev as: Keyboard
[  1012.062] (II) event16 - Logitech K780: device is a keyboard
[  1012.063] (II) event16 - Logitech K780: device removed
[  1012.063] (II) libinput: Logitech K780: needs a virtual subdevice
[  1012.063] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0006/0003:046D:405B.0007/input/input34/event16"
[  1012.063] (II) XINPUT: Adding extended input device "Logitech K780" (type: MOUSE, id 12)
[  1012.063] (**) Option "AccelerationScheme" "none"
[  1012.063] (**) Logitech K780: (accel) selected scheme none/0
[  1012.063] (**) Logitech K780: (accel) acceleration factor: 2.000
[  1012.063] (**) Logitech K780: (accel) acceleration threshold: 4
[  1012.064] (II) event16 - Logitech K780: is tagged by udev as: Keyboard
[  1012.064] (II) event16 - Logitech K780: device is a keyboard
[  1012.065] (II) config/udev: Adding input device Logitech M585/M590 (/dev/input/event17)
[  1012.065] (**) Logitech M585/M590: Applying InputClass "libinput pointer catchall"
[  1012.065] (**) Logitech M585/M590: Applying InputClass "libinput keyboard catchall"
[  1012.065] (II) Using input driver 'libinput' for 'Logitech M585/M590'
[  1012.066] (II) systemd-logind: got fd for /dev/input/event17 13:81 fd 28 paused 0
[  1012.066] (**) Logitech M585/M590: always reports core events
[  1012.066] (**) Option "Device" "/dev/input/event17"
[  1012.066] (**) Option "_source" "server/udev"
[  1012.067] (II) event17 - Logitech M585/M590: is tagged by udev as: Keyboard Mouse
[  1012.067] (II) event17 - Logitech M585/M590: device is a pointer
[  1012.067] (II) event17 - Logitech M585/M590: device is a keyboard
[  1012.067] (II) event17 - Logitech M585/M590: device removed
[  1012.067] (II) libinput: Logitech M585/M590: needs a virtual subdevice
[  1012.067] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0006/0003:046D:406B.0008/input/input35/event17"
[  1012.067] (II) XINPUT: Adding extended input device "Logitech M585/M590" (type: MOUSE, id 13)
[  1012.067] (**) Option "AccelerationScheme" "none"
[  1012.067] (**) Logitech M585/M590: (accel) selected scheme none/0
[  1012.067] (**) Logitech M585/M590: (accel) acceleration factor: 2.000
[  1012.067] (**) Logitech M585/M590: (accel) acceleration threshold: 4
[  1012.068] (II) event17 - Logitech M585/M590: is tagged by udev as: Keyboard Mouse
[  1012.069] (II) event17 - Logitech M585/M590: device is a pointer
[  1012.069] (II) event17 - Logitech M585/M590: device is a keyboard
[  1012.069] (II) config/udev: Adding input device Logitech M585/M590 (/dev/input/mouse1)
[  1012.069] (II) No input driver specified, ignoring this device.
[  1012.069] (II) This device may have been added with another device file.
[  1012.070] (II) config/udev: Adding input device Razer Razer Cyclosa (/dev/input/event6)
[  1012.070] (**) Razer Razer Cyclosa: Applying InputClass "libinput keyboard catchall"
[  1012.070] (II) Using input driver 'libinput' for 'Razer Razer Cyclosa'
[  1012.070] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 29 paused 0
[  1012.070] (**) Razer Razer Cyclosa: always reports core events
[  1012.070] (**) Option "Device" "/dev/input/event6"
[  1012.070] (**) Option "_source" "server/udev"
[  1012.071] (II) event6  - Razer Razer Cyclosa: is tagged by udev as: Keyboard
[  1012.071] (II) event6  - Razer Razer Cyclosa: device is a keyboard
[  1012.072] (II) event6  - Razer Razer Cyclosa: device removed
[  1012.072] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:1532:0110.0001/input/input6/event6"
[  1012.072] (II) XINPUT: Adding extended input device "Razer Razer Cyclosa" (type: KEYBOARD, id 14)
[  1012.072] (II) event6  - Razer Razer Cyclosa: is tagged by udev as: Keyboard
[  1012.073] (II) event6  - Razer Razer Cyclosa: device is a keyboard
[  1012.073] (II) config/udev: Adding input device Razer Razer Cyclosa Keyboard (/dev/input/event7)
[  1012.073] (**) Razer Razer Cyclosa Keyboard: Applying InputClass "libinput keyboard catchall"
[  1012.073] (II) Using input driver 'libinput' for 'Razer Razer Cyclosa Keyboard'
[  1012.074] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 30 paused 0
[  1012.074] (**) Razer Razer Cyclosa Keyboard: always reports core events
[  1012.074] (**) Option "Device" "/dev/input/event7"
[  1012.074] (**) Option "_source" "server/udev"
[  1012.075] (II) event7  - Razer Razer Cyclosa Keyboard: is tagged by udev as: Keyboard
[  1012.075] (II) event7  - Razer Razer Cyclosa Keyboard: device is a keyboard
[  1012.075] (II) event7  - Razer Razer Cyclosa Keyboard: device removed
[  1012.075] (II) libinput: Razer Razer Cyclosa Keyboard: needs a virtual subdevice
[  1012.075] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:1532:0110.0002/input/input7/event7"
[  1012.075] (II) XINPUT: Adding extended input device "Razer Razer Cyclosa Keyboard" (type: MOUSE, id 15)
[  1012.075] (**) Option "AccelerationScheme" "none"
[  1012.075] (**) Razer Razer Cyclosa Keyboard: (accel) selected scheme none/0
[  1012.075] (**) Razer Razer Cyclosa Keyboard: (accel) acceleration factor: 2.000
[  1012.075] (**) Razer Razer Cyclosa Keyboard: (accel) acceleration threshold: 4
[  1012.076] (II) event7  - Razer Razer Cyclosa Keyboard: is tagged by udev as: Keyboard
[  1012.076] (II) event7  - Razer Razer Cyclosa Keyboard: device is a keyboard
[  1012.076] (II) config/udev: Adding input device Razer Razer Cyclosa (/dev/input/event8)
[  1012.076] (II) No input driver specified, ignoring this device.
[  1012.076] (II) This device may have been added with another device file.
[  1012.077] (II) config/udev: Adding input device Razer Razer Cyclosa (/dev/input/event9)
[  1012.077] (**) Razer Razer Cyclosa: Applying InputClass "libinput pointer catchall"
[  1012.077] (II) Using input driver 'libinput' for 'Razer Razer Cyclosa'
[  1012.134] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 31 paused 0
[  1012.134] (**) Razer Razer Cyclosa: always reports core events
[  1012.134] (**) Option "Device" "/dev/input/event9"
[  1012.134] (**) Option "_source" "server/udev"
[  1012.135] (II) event9  - Razer Razer Cyclosa: is tagged by udev as: Mouse
[  1012.135] (II) event9  - Razer Razer Cyclosa: device is a pointer
[  1012.135] (II) event9  - Razer Razer Cyclosa: device removed
[  1012.135] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:1532:0110.0003/input/input9/event9"
[  1012.135] (II) XINPUT: Adding extended input device "Razer Razer Cyclosa" (type: MOUSE, id 16)
[  1012.135] (**) Option "AccelerationScheme" "none"
[  1012.135] (**) Razer Razer Cyclosa: (accel) selected scheme none/0
[  1012.135] (**) Razer Razer Cyclosa: (accel) acceleration factor: 2.000
[  1012.135] (**) Razer Razer Cyclosa: (accel) acceleration threshold: 4
[  1012.136] (II) event9  - Razer Razer Cyclosa: is tagged by udev as: Mouse
[  1012.136] (II) event9  - Razer Razer Cyclosa: device is a pointer
[  1012.137] (II) config/udev: Adding input device Razer Razer Cyclosa (/dev/input/mouse0)
[  1012.137] (II) No input driver specified, ignoring this device.
[  1012.137] (II) This device may have been added with another device file.
[  1012.137] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
[  1012.137] (II) No input driver specified, ignoring this device.
[  1012.137] (II) This device may have been added with another device file.
[  1012.137] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[  1012.138] (II) No input driver specified, ignoring this device.
[  1012.138] (II) This device may have been added with another device file.
[  1012.138] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event11)
[  1012.138] (II) No input driver specified, ignoring this device.
[  1012.138] (II) This device may have been added with another device file.
[  1012.138] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event12)
[  1012.138] (II) No input driver specified, ignoring this device.
[  1012.138] (II) This device may have been added with another device file.
[  1012.138] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event13)
[  1012.138] (II) No input driver specified, ignoring this device.
[  1012.138] (II) This device may have been added with another device file.
[  1012.139] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event15)
[  1012.139] (II) No input driver specified, ignoring this device.
[  1012.139] (II) This device may have been added with another device file.
[  1012.139] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
[  1012.139] (II) No input driver specified, ignoring this device.
[  1012.139] (II) This device may have been added with another device file.
[  1012.155] (**) DP-1: Applying InputClass "libinput keyboard catchall"
[  1012.155] (II) Using input driver 'libinput' for 'DP-1'
[  1012.155] (II) systemd-logind: returning pre-existing fd for /dev/input/event5 13:69
[  1012.155] (**) DP-1: always reports core events
[  1012.155] (**) Option "Device" "/dev/input/event5"
[  1012.155] (**) Option "_source" "_driver/libinput"
[  1012.155] (II) libinput: DP-1: is a virtual subdevice
[  1012.155] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/rc/rc0/input5/event5"
[  1012.155] (II) XINPUT: Adding extended input device "DP-1" (type: KEYBOARD, id 17)
[  1012.155] (**) Logitech K780: Applying InputClass "libinput keyboard catchall"
[  1012.155] (II) Using input driver 'libinput' for 'Logitech K780'
[  1012.155] (II) systemd-logind: returning pre-existing fd for /dev/input/event16 13:80
[  1012.155] (**) Logitech K780: always reports core events
[  1012.155] (**) Option "Device" "/dev/input/event16"
[  1012.155] (**) Option "_source" "_driver/libinput"
[  1012.155] (II) libinput: Logitech K780: is a virtual subdevice
[  1012.155] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0006/0003:046D:405B.0007/input/input34/event16"
[  1012.155] (II) XINPUT: Adding extended input device "Logitech K780" (type: KEYBOARD, id 18)
[  1012.155] (**) Logitech M585/M590: Applying InputClass "libinput pointer catchall"
[  1012.155] (**) Logitech M585/M590: Applying InputClass "libinput keyboard catchall"
[  1012.155] (II) Using input driver 'libinput' for 'Logitech M585/M590'
[  1012.155] (II) systemd-logind: returning pre-existing fd for /dev/input/event17 13:81
[  1012.155] (**) Logitech M585/M590: always reports core events
[  1012.155] (**) Option "Device" "/dev/input/event17"
[  1012.155] (**) Option "_source" "_driver/libinput"
[  1012.155] (II) libinput: Logitech M585/M590: is a virtual subdevice
[  1012.155] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10:1.2/0003:046D:C52B.0006/0003:046D:406B.0008/input/input35/event17"
[  1012.155] (II) XINPUT: Adding extended input device "Logitech M585/M590" (type: KEYBOARD, id 19)
[  1012.156] (**) Razer Razer Cyclosa Keyboard: Applying InputClass "libinput keyboard catchall"
[  1012.156] (II) Using input driver 'libinput' for 'Razer Razer Cyclosa Keyboard'
[  1012.156] (II) systemd-logind: returning pre-existing fd for /dev/input/event7 13:71
[  1012.156] (**) Razer Razer Cyclosa Keyboard: always reports core events
[  1012.156] (**) Option "Device" "/dev/input/event7"
[  1012.156] (**) Option "_source" "_driver/libinput"
[  1012.156] (II) libinput: Razer Razer Cyclosa Keyboard: is a virtual subdevice
[  1012.156] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:1532:0110.0002/input/input7/event7"
[  1012.156] (II) XINPUT: Adding extended input device "Razer Razer Cyclosa Keyboard" (type: KEYBOARD, id 20)
[  1012.283] (II) modeset(0): EDID vendor "AOC", prod id 9360
[  1012.283] (II) modeset(0): Using EDID range info for horizontal sync
[  1012.283] (II) modeset(0): Using EDID range info for vertical refresh
[  1012.283] (II) modeset(0): Printing DDC gathered Modelines:
[  1012.283] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync +vsync (88.8 kHz eP)
[  1012.283] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[  1012.283] (II) modeset(0): Modeline "720x480"x0.0   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "720x576"x0.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x1440"x0.0  156.00  1280 1376 1512 1744  1440 1443 1453 1493 -hsync +vsync (89.4 kHz e)
[  1012.283] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[  1012.283] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[  1012.283] (II) modeset(0): Modeline "1920x1080i"x0.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x720"x0.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  1012.283] (II) modeset(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[  1012.283] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[  1012.283] (II) modeset(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[  1012.283] (II) modeset(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[  1012.283] (II) modeset(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[  1012.283] (II) modeset(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  1012.283] (II) modeset(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[  1012.283] (II) modeset(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[  1012.283] (II) modeset(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[  1012.283] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[  1012.283] (II) modeset(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  1012.283] (II) modeset(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[  1728.719] (EE) event17 - Logitech M585/M590: client bug: event processing lagging behind by 308ms, your system is too slow
[  1893.415] (**) Option "fd" "19"
[  1893.415] (II) event2  - Power Button: device removed
[  1893.416] (**) Option "fd" "22"
[  1893.416] (II) event4  - Video Bus: device removed
[  1893.416] (**) Option "fd" "23"
[  1893.416] (II) event1  - Power Button: device removed
[  1893.416] (**) Option "fd" "24"
[  1893.416] (II) event0  - Sleep Button: device removed
[  1893.416] (**) Option "fd" "25"
[  1893.416] (**) Option "fd" "26"
[  1893.416] (II) event18 - Logitech B330/M330/M331: device removed
[  1893.416] (**) Option "fd" "27"
[  1893.417] (**) Option "fd" "28"
[  1893.417] (**) Option "fd" "29"
[  1893.417] (II) event6  - Razer Razer Cyclosa: device removed
[  1893.417] (**) Option "fd" "30"
[  1893.417] (**) Option "fd" "31"
[  1893.417] (II) event9  - Razer Razer Cyclosa: device removed
[  1893.417] (**) Option "fd" "25"
[  1893.417] (II) event5  - DP-1: device removed
[  1893.417] (**) Option "fd" "27"
[  1893.417] (II) event16 - Logitech K780: device removed
[  1893.417] (**) Option "fd" "28"
[  1893.417] (II) event17 - Logitech M585/M590: device removed
[  1893.417] (**) Option "fd" "30"
[  1893.417] (II) event7  - Razer Razer Cyclosa Keyboard: device removed
[  1893.418] (II) AIGLX: Suspending AIGLX clients for VT switch
[  1893.459] (II) systemd-logind: got pause for 13:81
[  1893.459] (II) systemd-logind: got pause for 13:68
[  1893.459] (II) systemd-logind: got pause for 13:64
[  1893.459] (II) systemd-logind: got pause for 13:73
[  1893.459] (II) systemd-logind: got pause for 13:70
[  1893.459] (II) systemd-logind: got pause for 13:80
[  1893.459] (II) systemd-logind: got pause for 13:69
[  1893.459] (II) systemd-logind: got pause for 13:82
[  1893.459] (II) systemd-logind: got pause for 13:71
[  1893.459] (II) systemd-logind: got pause for 226:0
[  1893.459] (II) systemd-logind: got pause for 13:66
[  1893.459] (II) systemd-logind: got pause for 13:65
问题
  1. 使用 startx 启动后桌面黑屏无任何显示,但有背光;

  2. 切换终端并 reboot;

  3. 安装 twm 及  xterm,并在  ~/.xinitrc 中切换配置后启动,桌面显示正常;

  4. 问题可能出在 bspwm 上,但没有修改任何配置;

以上!

希望诸位大佬指点迷津,感谢🙏!

最近编辑记录 Dueot (2021-09-02 13:39:07)

离线

#2 2021-09-02 14:03:37

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,368
个人网站

Re: 安装 bspwm,使用 startx 启动后黑屏

可能 bspwm 默认就是那个样子?

离线

#3 2021-09-02 14:39:44

Dueot
会员
注册时间: 2019-10-26
帖子: 6

Re: 安装 bspwm,使用 startx 启动后黑屏

依云 说:

可能 bspwm 默认就是那个样子?

不能够吧?twm 已经够简陋了,起码还有终端窗口让操作,感觉是哪里配置不对,但又找不到,看日志也不能确定有没有错误;

离线

#4 2021-09-02 14:44:13

依云
会员
所在地: a.k.a. 百合仙子
注册时间: 2011-08-21
帖子: 8,368
个人网站

Re: 安装 bspwm,使用 startx 启动后黑屏

Dueot 说:
依云 说:

可能 bspwm 默认就是那个样子?

不能够吧?twm 已经够简陋了,起码还有终端窗口让操作,感觉是哪里配置不对,但又找不到,看日志也不能确定有没有错误;

不。twm 默认并没有终端窗口。那个是 xinitrc 里启动的,被你注释掉了。

离线

#5 2021-09-02 14:52:06

Dueot
会员
注册时间: 2019-10-26
帖子: 6

Re: 安装 bspwm,使用 startx 启动后黑屏

依云 说:
Dueot 说:
依云 说:

可能 bspwm 默认就是那个样子?

不能够吧?twm 已经够简陋了,起码还有终端窗口让操作,感觉是哪里配置不对,但又找不到,看日志也不能确定有没有错误;

不。twm 默认并没有终端窗口。那个是 xinitrc 里启动的,被你注释掉了。

多谢🙏,我找找别人的配置文件看一下,改动试试,看能不能解决。

离线

#6 2021-09-02 15:03:01

Dueot
会员
注册时间: 2019-10-26
帖子: 6

Re: 安装 bspwm,使用 startx 启动后黑屏

依云 说:
Dueot 说:
依云 说:

可能 bspwm 默认就是那个样子?

不能够吧?twm 已经够简陋了,起码还有终端窗口让操作,感觉是哪里配置不对,但又找不到,看日志也不能确定有没有错误;

不。twm 默认并没有终端窗口。那个是 xinitrc 里启动的,被你注释掉了。

尝试直接把默认配置中的 twm 替换为 bspwm 居然也显示正常了,多谢🙏!

离线

页脚