Page 1 of 1

Xfce 4 forgots resolution settings

Posted: 10. Dec 2009, 11:13
by gatewayasteroid
Hi, I have an eeebox B202 (Intel 950 VGA) and a 1366x768 LCD monitor. I had to manually create an xorg.conf file containing a modeline to be able to use the rated resolution.

Anyway, everytime I restart I have to manually select the resolution from the Control panel-> Display.

I workarounded it by autostarting an xrandr command, is there a cleaner way?

Thanks

Re: Xfce 4 forgots resolution settings

Posted: 10. Dec 2009, 12:44
by gapan
This could be a bug with xfce, I remember it had similar problems in the past. The xrandr way that you're using is just fine, but I'm guessing that this happens because you're allowing other resolutions in your xorg.conf too. If you restrict your xorg.conf to the desired resolution it will still to that no matter what.

Re: Xfce 4 forgots resolution settings

Posted: 10. Dec 2009, 12:55
by gatewayasteroid
gapan wrote:This could be a bug with xfce, I remember it had similar problems in the past. The xrandr way that you're using is just fine, but I'm guessing that this happens because you're allowing other resolutions in your xorg.conf too. If you restrict your xorg.conf to the desired resolution it will still to that no matter what.
Hi, the xorg.conf is very minimal, and I just put 1366x768.

Code: Select all

Section "Monitor"
	Identifier     "Monitor0"
	# 1368x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 85.86 MHz
	Modeline "1368x768_60.00"  85.86  1368 1440 1584 1800  768 769 772 795  -HSync +Vsync
EndSection

Section "Screen"
	Identifier  "Screen0"
	Monitor     "Monitor0"
	Subsection "Display"
		Modes "1368x768"
	EndSubsection
EndSection
Anyway, yes, I suppose it's a bug of xfce. Thanks :)

Re: Xfce 4 forgots resolution settings

Posted: 10. Dec 2009, 13:03
by gapan
I think there is a problem there. Your Modes line should be

Code: Select all

Modes "1368x768_60.00"
instead.

Re: Xfce 4 forgots resolution settings

Posted: 10. Dec 2009, 13:08
by gatewayasteroid
gapan wrote:I think there is a problem there. Your Modes line should be

Code: Select all

Modes "1368x768_60.00"
instead.
Thanks for the tip :)