You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
351 B
26 lines
351 B
#!/bin/sh
|
|
if [ -r /etc/default/locale ]; then
|
|
. /etc/default/locale
|
|
export LANG LANGUAGE
|
|
fi
|
|
|
|
# debian
|
|
if [ -r /etc/X11/Xsession ]; then
|
|
. /etc/X11/Xsession
|
|
exit 0
|
|
fi
|
|
|
|
# el
|
|
if [ -r /etc/X11/xinit/Xsession ]; then
|
|
. /etc/X11/xinit/Xsession
|
|
exit 0
|
|
fi
|
|
|
|
# suse
|
|
if [ -r /etc/X11/xdm/Xsession ]; then
|
|
. /etc/X11/xdm/Xsession
|
|
exit 0
|
|
fi
|
|
|
|
xterm
|