.xinitrc: Add compat for Debian-like Xsessions

This commit is contained in:
Salt 2020-08-23 19:32:48 -05:00
parent c4b7db06a8
commit c7190a2009

View File

@ -32,5 +32,9 @@ if [ -x "$HOME/.config/conky/gen.sh" ]; then
fi
if [ -x "$HOME/.firestarter/firestarter" ]; then
export FS_DIEONWM=true
exec "$HOME/.firestarter/firestarter" -vvv | tee .firestarter.log
export STARTUP="$HOME/.firestarter/firestarter"
fi
# We'd rather let the system-wide Xsession handle this
if ! [ -f "/etc/X11/Xsession.d/99x11-common_start" ]; then
exec $STARTUP
fi