From: short <> Date: Sat, 14 May 2005 03:25:14 +0000 (+0000) Subject: Implemented Fedora Core compatibility. X-Git-Url: https://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=8ceee09fa9fed3d073397cb1b284921253268578 Implemented Fedora Core compatibility. --- diff --git a/.Xsession b/.Xsession index b9c08fe..b107cfc 100755 --- a/.Xsession +++ b/.Xsession @@ -1,7 +1,11 @@ # $Id$ -# FIXME: Fedora Core compatibility! - . $HOME/.bashrc -exec /usr/bin/x-session-manager "$@" +if [ -x /etc/X11/xinit/Xclients ];then + exec /etc/X11/xinit/Xclients "$@" +fi +if [ -x /usr/bin/x-session-manager ];then + exec /usr/bin/x-session-manager "$@" +fi +logger -i -s -p user.crit "No session manager found, exiting!"