View previous topic :: View next topic |
Author |
Message |
cgmd Veteran


Joined: 17 Feb 2005 Posts: 1585 Location: Louisiana
|
Posted: Sat Oct 28, 2006 9:36 pm Post subject: [Solved] generic X window... |
|
|
Prior to having a fancy DM installed, startx would bring up a rather generic set of 3 rectangular X terminal windows. For X troubleshooting reasons I would like to be able to circumvent my usual DM and, instead, open those generic windows instead.
Does anyone have an idea of what I'm thinking about and how to make it happen?
Thanks! _________________ "Primum non nocere" ---Galen
Last edited by cgmd on Sat Oct 28, 2006 11:05 pm; edited 1 time in total |
|
Back to top |
|
 |
widremann Veteran

Joined: 14 Mar 2005 Posts: 1314
|
Posted: Sat Oct 28, 2006 10:36 pm Post subject: |
|
|
Create a script called "mystartx.sh" with the following:
Code: |
#! /bin/sh
X &
export DISPLAY=:0
xterm &
exec twm
|
Then chmod +x the script and run it "./mystartx.sh". |
|
Back to top |
|
 |
cgmd Veteran


Joined: 17 Feb 2005 Posts: 1585 Location: Louisiana
|
Posted: Sat Oct 28, 2006 11:05 pm Post subject: |
|
|
That did it!
Thanks!  _________________ "Primum non nocere" ---Galen |
|
Back to top |
|
 |
|