Magellan Linux

Annotation of /alx-src/trunk/tinyalxconfig-ng/bin/startx-xorg.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 537 - (hide annotations) (download) (as text)
Mon Jan 26 17:16:32 2009 UTC (15 years, 4 months ago) by niro
File MIME type: application/x-sh
File size: 550 byte(s)
-fixed header
1 niro 509 #!/bin/sh
2 niro 537 # $Id$
3 niro 509
4     XSERVER=X
5    
6     # -bs: disable backingstore support
7     # -dpms: disable dpms extension
8     # -su: disable any save under support
9     # -tst: do not test for any extensions
10     # -kb: disable keyboard extension
11     # -ld: limit data space to N kilobytes
12     # -lf: limit number of open files to N
13     # -ls: limit stack space to N kilobytes
14     OPTS="-ld 0 -lf 0 -ls 0"
15    
16     su - station -c "
17     source /etc/profile
18     ${XSERVER} -terminate -fp /usr/share/fonts/75dpi,/usr/share/fonts/misc -dpi 84 -audit 0 ${OPTS} &
19     # sleep 1
20     export DISPLAY=:0
21     exec fluxbox
22     " &