https://bugzilla.novell.com/show_bug.cgi?id=272715 sndirsch@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhopf@novell.com Status|NEW |NEEDINFO Info Provider| |casualprogrammer@yahoo.com ------- Comment #7 from sndirsch@novell.com 2007-05-09 12:13 MST ------- Your resolution is switched automatically after login? Wow! Assuming you're already using the intel driver this might be related to enabling the external output for Laptops with intel chipsets in /etc/X11/xdm/Xsetup: # # Check if the machine is a laptop and configure # external output if XRANDR 1.2 is available # if xrandr | grep -q "^default connected" ; then echo "Driver not XRANDR 1.2 capable, ignoring DISPLAYMANAGER_RANDR_MODE_* settings" else if $halporp --key system.formfactor --string laptop ; then mode_auto="$DISPLAYMANAGER_RANDR_MODE_auto" else mode_auto="" fi for ext in VGA DVI-I DVI-D DVI-A Composite S-Video Component LFP Proprietary ; do var="DISPLAYMANAGER_RANDR_MODE_${ext//-/_}" line="${!var}" test "x$line" = xauto && line="$mode_auto" mode="${line%% *}" case "x$line" in x) ;; x*\ *) echo "xrandr for $ext: new mode $line" xrandr --newmode $line xrandr --addmode $ext $mode xrandr --output $ext --mode $mode ;; x*) echo "xrandr for $ext: known mode $line" xrandr --output $ext --mode $mode ;; esac done fi Could you set DISPLAYMANAGER_RANDR_MODE_VGA in /etc/sysconfig/displaymanager to "" to check if this issue disappears? The other issue is, that we still do not write a correct X11 configuration for the new intel driver. :-( -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.