From owner-freebsd-questions@FreeBSD.ORG Mon Mar 14 16:33:16 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 389DB16A4CE for ; Mon, 14 Mar 2005 16:33:16 +0000 (GMT) Received: from relay01.pair.com (relay01.pair.com [209.68.5.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 7F82E43D55 for ; Mon, 14 Mar 2005 16:33:15 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 20803 invoked from network); 14 Mar 2005 16:14:11 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 14 Mar 2005 16:14:11 -0000 X-pair-Authenticated: 200.115.214.28 Date: Mon, 14 Mar 2005 13:14:55 -0300 From: Alejandro Pulver To: "Stephen J. Roznowski" Message-ID: <20050314131455.19f64d43@ale.varnet.bsd> In-Reply-To: <200503100325.j2A3PjhQ069843@istari.comcast.net> References: <200503100325.j2A3PjhQ069843@istari.comcast.net> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: DPMS not turning off LCD screen X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Mar 2005 16:33:16 -0000 On Wed, 9 Mar 2005 22:25:45 -0500 (EST) "Stephen J. Roznowski" wrote: > I have a Sony SDM-HX93 LCD monitor running off an Nvidia GeForce FX > 5500. > > I have the DPMS option set in my xorg configuration file, but while > the screen turns off, the monitor never enters power off mode (it > remains 'backlit'). > > Any suggestions where to look for the error? > > Thanks, > -- > Stephen J. Roznowski (sjr@comcast.net) > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" Hello, The configuration file 'xorg.conf' can have the following settings (for more information see xorg.conf(5)): ============================================================= Section "ServerFlags" [...] Option "BlankTime" "3" # just blank the screen Option "StandbyTime" "5" # DPMS state "stand by" Option "SuspendTime" "5" # DPMS state "suspend" Option "OffTime" "5" # DPMS state "off" EndSection Section "Monitor" [...] Option "DPMS" # enable DPMS EndSection ============================================================= The first 4 option lines (in section "ServerFlags") contain the name of the option followed by the number of minutes of inactivity to wait before activate them. The last option (in section "Monitor") *must* be enabled for DPMS to work. In some monitors (like mine) all the DPMS states of inactivity are the same, that turn off the monitor. The "BlankTime" indicated the time to wait before displaying a black screen, not turning off (or suspend, etc.) the monitor, like DPMS states do. So im my monitor, after 3 mminutes of inactivity the screen will be blanked, then, if I do not do anything, 2 minutes after that the monitor will turn off. The commands to try them are: Try one DPMS state (choose one): xset dpms force (off|standby|suspend) Try the screen blank (sleep is required because when you press enter it starts, but when you release it, or it start repeating, it stops): xset s blank sleep 3 ; xset s activate Best Regards, Ale