Thanks for the response.  It seems like this is a bug that shoud be addressed.  But I just today tried setting it to "blank screen" when I closed the lid, and now when I close and open it, it does successfully reset the display. 
<br><br>Moshe<br><br><div><span class="gmail_quote">On 11/27/06, <b class="gmail_sendername"><a href="mailto:Fulko.Hew@sita.aero">Fulko.Hew@sita.aero</a></b> <<a href="mailto:Fulko.Hew@sita.aero">Fulko.Hew@sita.aero</a>
> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br><br><a href="mailto:fedora-test-list-bounces@redhat.com">fedora-test-list-bounces@redhat.com
</a> wrote on 11/26/2006 11:11:26 PM:<br><br>> For maybe around a week now, my laptop's does not turn back on when<br>> I open the lid.  I can be logged in or at the gdm screen, but<br>> closing the laptop lid permanently blanks my screen.  I have set all
<br>> my gnome-power-manager options never to shut off the screen or<br>> perform any action on a lid close.<br>><br>> I have a Dell Latitude D610 with an Intel 915GM/GMS/910GML<br>> (according to lspci), which uses the i810 video driver.
<br>><br>> FWIW, using the xset dpms force off does blank the screen, but it<br>> successfully turns back on when I move the mouse.<br>><br>> Any ideas?<br><br>Yes.  I think I have the same issue with my Dell Inspiron 6400 (aka 1505?)
<br>I googled the world and found someone (at U of T) with a solution that<br>worked for me. (sorry, I can't rememeber the url and I didn'w write it<br>down, but here it is from my notes:<br><br> a) you need an ACPI events file to capture the lidswitch activity,
<br> b) a script to run when triggered to turn the light back on.<br><br>(Don't forget to mark lidswitch.sh as executable.)<br><br>1/ Add the file:  /etc/acpi/events/lidswitch<br><br># /etc/acpi/events/lidswitch<br># This is called when the lid is closed or opened and calls
<br># /etc/acpi/lidswitch.sh for further processing.<br><br>event=button[ /]lid<br>action=/etc/acpi/lidswitch.sh<br><br><br>2/ Add the file /etc/acpi/lidswitch.sh<br><br>#!/bin/sh<br># /etc/acpi/lidswitch.sh<br># Re-activates the screen when the lid is opened again
<br><br>LID_STATE="/proc/acpi/button/lid/LID/state"<br>LCD_STATE="/proc/acpi/video/VID/LCD/state"<br>VT_NR=/tmp/lid_sh<br><br>if [ -e /tmp/acpi_sleep ]; then<br>      rm /tmp/acpi_sleep<br>      exit<br>
fi<br><br>grep -q open "$LID_STATE"<br>if [ $? -eq 0 ]; then               # open the lid<br>      vbetool dpms on<br><br>      if [ -e "$VT_NR" ]; then      # we closed the lid in X<br>            chvt $(cat $VT_NR)
<br>            rm -f "$VT_NR"<br>      fi<br>else                                # closing the lid<br>      echo $(fgconsole) > $VT_NR    # remember the current vt<br>      chvt 1<br>fi<br><br><br><br>This document is strictly confidential and intended only for use by the addressee unless otherwise stated.  If you are not the intended recipient, please notify the sender immediately and delete it from your system.
<br><br><br>--<br>fedora-test-list mailing list<br><a href="mailto:fedora-test-list@redhat.com">fedora-test-list@redhat.com</a><br>To unsubscribe:<br><a href="https://www.redhat.com/mailman/listinfo/fedora-test-list">https://www.redhat.com/mailman/listinfo/fedora-test-list
</a><br><br></blockquote></div><br><br clear="all"><br>