#!/bin/sh # fndSession (c) MandrakeSoft, Chmouel Boudjnah ## FindSession for kdm and gdm. [ -x /usr/sbin/chksession ] || { echo "I can't find /usr/sbin/chksession" echo "check your installation" exit 1 } if [ -e /usr/share/config/kdmrc ];then LIST="`/usr/sbin/chksession -k`" perl -pi -e 's|^SessionTypes=.*|$ENV{LIST}|'\ /usr/share/config/kdmrc fi if [ -d /etc/X11/gdm/Sessions ];then /usr/sbin/chksession -g fi