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> &lt;<a href="mailto:Fulko.Hew@sita.aero">Fulko.Hew@sita.aero</a>
&gt; 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>&gt; For maybe around a week now, my laptop's does not turn back on when<br>&gt; I open the lid.&nbsp;&nbsp;I can be logged in or at the gdm screen, but<br>&gt; closing the laptop lid permanently blanks my screen.&nbsp;&nbsp;I have set all
<br>&gt; my gnome-power-manager options never to shut off the screen or<br>&gt; perform any action on a lid close.<br>&gt;<br>&gt; I have a Dell Latitude D610 with an Intel 915GM/GMS/910GML<br>&gt; (according to lspci), which uses the i810 video driver.
<br>&gt;<br>&gt; FWIW, using the xset dpms force off does blank the screen, but it<br>&gt; successfully turns back on when I move the mouse.<br>&gt;<br>&gt; Any ideas?<br><br>Yes.&nbsp;&nbsp;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:&nbsp;&nbsp;/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=&quot;/proc/acpi/button/lid/LID/state&quot;<br>LCD_STATE=&quot;/proc/acpi/video/VID/LCD/state&quot;<br>VT_NR=/tmp/lid_sh<br><br>if [ -e /tmp/acpi_sleep ]; then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rm /tmp/acpi_sleep<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit<br>
fi<br><br>grep -q open &quot;$LID_STATE&quot;<br>if [ $? -eq 0 ]; then&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # open the lid<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;vbetool dpms on<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if [ -e &quot;$VT_NR&quot; ]; then&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# we closed the lid in X<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;chvt $(cat $VT_NR)
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rm -f &quot;$VT_NR&quot;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fi<br>else&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# closing the lid<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo $(fgconsole) &gt; $VT_NR&nbsp;&nbsp;&nbsp;&nbsp;# remember the current vt<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;chvt 1<br>fi<br><br><br><br>This document is strictly confidential and intended only for use by the addressee unless otherwise stated.&nbsp;&nbsp;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>