From owner-freebsd-questions@FreeBSD.ORG Tue Jan 25 18:47:14 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 4452C16A4CE for ; Tue, 25 Jan 2005 18:47:14 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9FC243D3F for ; Tue, 25 Jan 2005 18:47:13 +0000 (GMT) (envelope-from gianluca@gmail.com) Received: by rproxy.gmail.com with SMTP id f1so172270rne for ; Tue, 25 Jan 2005 10:47:12 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=VdAPvvVEN2aeYjzDXAk3fG082RHyKFX5Abnf0zrxy+5njicHxzAUESnHhgdH23rKVY1pjlfc1LAtK9Jnmnb4V9aDEkcKMGZkaVJhXH2Y1efqBQbOWQSbSyjJzUhwHBDPRLDnK+MNCkoLCmAJvwyq2z7PJZI3VtfGGc5hAFBd5uw= Received: by 10.38.149.55 with SMTP id w55mr314256rnd; Tue, 25 Jan 2005 10:47:12 -0800 (PST) Received: by 10.38.74.37 with HTTP; Tue, 25 Jan 2005 10:47:11 -0800 (PST) Message-ID: Date: Tue, 25 Jan 2005 10:47:11 -0800 From: Gianluca To: Joachim Dagerot , freebsd-questions@freebsd.org In-Reply-To: <20050125151513.GP731@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200501251512.j0PFCT3P015620@mail-core.space2u.com> <20050125151513.GP731@pcwin002.win.tue.nl> Subject: Re: Can't get rid of screen 'saver' X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gianluca List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jan 2005 18:47:14 -0000 apparently there are some hardcoded defaults in the X server that need to be overridden to remove the 10 minute blanktime. just add the serverflags section in your config file as explained here: http://xorg.freedesktop.org/X11R6.8.0/doc/xorg.conf.5.html and it should be fine. the one affecting you is probably this: Option "BlankTime" "time" sets the inactivity timeout for the blanking phase of the screensaver. time is in minutes. This is equivalent to the Xorg server's `-s' flag, and the value can be changed at run-time with xset(1x) . Default: 10 minutes. you might also want to get rid of all those others options "StandbyTime", "SuspendTime" and "OffTime" just to be on the safe side. HTH, g.