From 0d818c3465c615f347511634c2f469fe40e773b1 Mon Sep 17 00:00:00 2001 From: Tyler Spivey Date: Wed, 23 Jul 2025 16:44:26 -0400 Subject: [PATCH] Fixed a bug in how dbus is called from .xinitrc. --- i38.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/i38.sh b/i38.sh index 4f4cee9..ef46221 100755 --- a/i38.sh +++ b/i38.sh @@ -358,7 +358,6 @@ cat << 'EOF' > ~/.xinitrc # # Executed by startx (run your window manager from here) -dbus-launch [[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources if [ -d /etc/X11/xinit/xinitrc.d ]; then @@ -371,10 +370,7 @@ fi [ -f /etc/xprofile ] && . /etc/xprofile [ -f ~/.xprofile ] && . ~/.xprofile -export DBUS_SESSION_BUS_PID -export DBUS_SESSION_BUS_ADDRESS - -exec i3 +exec dbus-run-session -- i3 EOF chmod +x ~/.xinitrc }