Difference between revisions of "Xserver Issues"

From Blue-IT.org Wiki

Line 20: Line 20:
 
==Modline generator==
 
==Modline generator==
 
[http://gtf.sourceforge.net/ GTF] is a modline generator.
 
[http://gtf.sourceforge.net/ GTF] is a modline generator.
  linux:> gtf
+
  linux: > gtf
 
  usage: gtf x y refresh [-v|--verbose] [-f|--fbmode] [-x|--xorgmode]
 
  usage: gtf x y refresh [-v|--verbose] [-f|--fbmode] [-x|--xorgmode]
 
+
 
             x : the desired horizontal resolution (required)
 
             x : the desired horizontal resolution (required)
 
             y : the desired vertical resolution (required)
 
             y : the desired vertical resolution (required)
Line 30: Line 30:
 
  -x|--xorgmode : output an Xorg-style mode description (this is the default
 
  -x|--xorgmode : output an Xorg-style mode description (this is the default
 
                 if no mode description is requested)
 
                 if no mode description is requested)
 +
 +
This gives me e.g.
 +
linux: > gtf 768 576 50 -x
 +
 +
  # 768x576 @ 50.00 Hz (GTF) hsync: 29.65 kHz; pclk: 28.46 MHz
 +
  Modeline "768x576_50.00"  28.46  768 784 864 960  576 577 580 593  -HSync +Vsync
 +
 +
for a modline used with a HTPC (Home theatre PC).

Revision as of 17:27, 19 August 2006

Start a program in fullscreen X session

If you like to start a single program, e.g. mythfrontend on another screen - e.g. a TV or a second monitor, simple use the next line:

xinit /bin/sh -c "DISPLAY=:1 mythfrontend" -- /usr/bin/X :1 -ac

And from HowTo Setup MythTV

[...] I have this first script run at boot up time:

#!/bin/bash
cd /root
HOME='/root'
export HOME
xinit /root/xinitmyth -- :0 &

and the startup file /root/xinitmyth

xsetroot -solid gray &
mythfrontend

[...]

Modline generator

GTF is a modline generator.

linux: > gtf
usage: gtf x y refresh [-v|--verbose] [-f|--fbmode] [-x|--xorgmode]

           x : the desired horizontal resolution (required)
           y : the desired vertical resolution (required)
     refresh : the desired refresh rate (required)
-v|--verbose : enable verbose printouts (traces each step of the computation)
 -f|--fbmode : output an fbset(8)-style mode description
-x|--xorgmode : output an Xorg-style mode description (this is the default
               if no mode description is requested)

This gives me e.g.

linux: > gtf 768 576 50 -x

 # 768x576 @ 50.00 Hz (GTF) hsync: 29.65 kHz; pclk: 28.46 MHz
 Modeline "768x576_50.00"  28.46  768 784 864 960  576 577 580 593  -HSync +Vsync

for a modline used with a HTPC (Home theatre PC).