PDA

View Full Version : Question about xnest


blueshome
February 22nd, 2006, 08:55 AM
I've to test a gdm theme so I use xnest
typing the following....
gdmflexiserver --xnest

How I can set a different screen resolution (like 800x600)

I've try with
gdmflexiserver --xnest -geometry 800x600
but seems the same

Someone can help me :-D

roshan.s
February 22nd, 2006, 11:11 AM
You can modify /etc/gdm/gdm.conf. Add the option -geometry W+H+X+Y to the line starting with Xnest=...

Note that you use the '+' character, not the 'x' character to separate the values. Also, you can leave out the X+Y and use only width and height.

Before:
Xnest=/usr/X11R6/bin/Xnest -br -audit 0 -name Xnest

After:
Xnest=/usr/X11R6/bin/Xnest -br -audit 0 -name Xnest -geometry 800+600

Also, if you're using Dapper, you shouldn't edit the /etc/gdm/gdm.conf file. You need to copy any lines you want to edit to the same section in /etc/gdm/gdm.conf-custom and change them there. This won't work pre-Dapper.

blueshome
February 24th, 2006, 02:39 PM
Thanks roshan for the help