Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 509 - (show annotations) (download) (as text)
Tue Jun 17 19:02:01 2008 UTC (15 years, 10 months ago) by niro
File MIME type: application/x-sh
File size: 654 byte(s)
-kdrive and Xorg startx scripts

1 #!/bin/sh
2 # $Header: /home/cvsd/alx-cvs/alx-src/tinyalxconfig-ng/bin/startx-xorg.sh,v 1.1 2008-06-17 19:02:01 niro Exp $
3
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 " &