You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
break the logind session integration for systems using systemd. logind already takes care of starting the session with a dbus daemon, so there's no need to run one session within another session. This might perhaps be a fix for non-systemd init systems.
The text was updated successfully, but these errors were encountered:
Many thanks for posting this, @v3natio . Deleting dbus-launch and dbus-update-activation-environment --all should fix the duplicate processes that you see on Arch when opening htop. This thread on the Arch forums explains in more detail.
By the way, the Arch Wiki recommends adding the last if block in /etc/X11/xinit/xinitrc to your custom .xinitrc profile (for LARBS, that's in ~/.config/x11/xinitrc):
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
This will source a systemd script that ensures there's no problems.
The following changes
#1402
#1340
break the
logind
session integration for systems usingsystemd
.logind
already takes care of starting the session with adbus
daemon, so there's no need to run one session within another session. This might perhaps be a fix for non-systemd
init systems.The text was updated successfully, but these errors were encountered: