blob: ad2c9ead627a5e0acb5e3d9ef2003f2d127ee346 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#!/bin/bash
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2
# Author: Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-apps/xinit/files/startDM.sh,v 1.1 2005/08/14 00:12:39 spyderous Exp $
source /etc/init.d/functions.sh
# We need to source /etc/profile for stuff like $LANG to work
# bug #10190.
source /etc/profile
# Great new Gnome2 feature, AA
# We enable this by default
export GDK_USE_XFT=1
if [ -e ${svcdir}/options/xdm/service ]
then
retval=0
EXE="`cat ${svcdir}/options/xdm/service`"
/sbin/start-stop-daemon --start --quiet --exec ${EXE}
retval=$?
# Fix bug #26125 for slower systems
wait; sleep 2
if [ "${retval}" -ne 0 ]
then
# there was a error running the DM
einfo "ERROR: could not start the Display Manager..."
# make sure we do not have a misbehaving DM
killall -9 ${EXE##*/}
fi
fi
# vim:ts=4
|