X 服务器不保持运行

X 服务器不保持运行

从昨天开始,我的 GUI 出现了问题。我安装了新的 arch Linux,但无法继续运行 bspwm-git,登录后我再次获得登录控制台。
这是我的 .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

exec bspwm


这是我的 .xserverrc

#!/bin/sh

exec /usr/bin/Xorg/ -nolisten tcp -nolisten local "$@" vt$XDG_VTNR


我的 .zprofile 现在是这样的

if [ -z "$DISPLAY" ] && [ "$XDG_VTNR" -le 2 ]; then
    exec startx —- -keeptty 
fi

并且没有选项 -keeptty x 服务器在登录后立即关闭

内核参数


title   Arch Linux (linux)
linux   /vmlinuz-linux
initrd  /intel-ucode.img
initrd  /initramfs-linux.img
options cryptdevice=PARTUUID=4df4ad4e-79d0-46ec-8097-4644fa3a43f6:root root=/dev/mapper/root rw rootfstype=btrfs nvidia_drm.modeset=1 nvidia_drm.fbdev=1

相关内容