I have created both, trying to get at least xscreensaver to run (I'll add more once I know it works) as I login to Enlightenment, but it doesn't seem to be working. When my laptop boots, I get the GDM login, I have Enlightenment set as my default session, enlightenment starts but it doesn't seem to be running either .xsession or .xinitrc. I have included the file below (.xsession and .xinitrc are the same). Any ideas? Oh, I'm using RedHat 7.3.

------------------------------------------------------------------
#!/bin/bash
# I hope this works

# redirect errors to a file in user's home directory if we can
errfile="$HOME/.xsession-errors"
if cp /dev/null "$errfile" 2> /dev/null ; then
    chmod 600 "$errfile"
    exec > "$errfile" 2>&1
else
    errfile=`mktemp -q /tmp/xses-$USER.XXXXXX`
    if [ $? -eq 0 ]; then
        exec > "$errfile" 2>&1
    fi
fi

exec /usr/X11R6/bin/xscreensaver &
-----------------------------------------------------------------

--
Hugh Taylor <[EMAIL PROTECTED]>

Reply via email to