From owner-freebsd-questions@FreeBSD.ORG Wed Nov 15 16:59:07 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6E4AB16A4F5 for ; Wed, 15 Nov 2006 16:59:07 +0000 (UTC) (envelope-from cptsalek@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA9B443D6B for ; Wed, 15 Nov 2006 16:58:54 +0000 (GMT) (envelope-from cptsalek@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so327971nfc for ; Wed, 15 Nov 2006 08:58:53 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QEY2RvF7ZEfLQcXBoT0pEi8+F7ZkzC+dTUbp2hx0SHZ/HgWMrSeBflDsDUf+qoLjjsonRKg74+5mmZrgQXD7P8DqkvopQD+/BY59AZpPQzn18sTEPRAfXEGa6kEr1J61bXasn1ddFfROMgZHX99DoXWl1wPbovYbKnQEwuIFmCU= Received: by 10.82.106.14 with SMTP id e14mr326117buc.1163609933186; Wed, 15 Nov 2006 08:58:53 -0800 (PST) Received: by 10.82.159.9 with HTTP; Wed, 15 Nov 2006 08:58:52 -0800 (PST) Message-ID: <14989d6e0611150858i57e5c8ceicd5fcb0a7f85c7f1@mail.gmail.com> Date: Wed, 15 Nov 2006 17:58:52 +0100 From: "Christian Walther" To: Ne'Bahn In-Reply-To: <000e01c708d5$808c67d0$92d3dcc9@bloodlust> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <000e01c708d5$808c67d0$92d3dcc9@bloodlust> Cc: UNIX - Questions Subject: Re: Need help... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Nov 2006 16:59:07 -0000 Hi Ne'Bahn, it is possible that there is something wrong with your hardware configuration, but I guess that your X configuration contains the wrong sort order of display resolutions. If you look at /usr/X11R6/lib/X11/xorg.conf you'll find a Section "screen" somewhere. This is were the resolutions are configured your laptop (and desktop) is capable to display. Important for your situation are the Subsection "Display" lines, which look like this: SubSection "Display" Depth 16 Modes "1280x1024" "800x600" "640x480" EndSubSection Now, in your case I guess that the line listing all the modes starts with the lowest resolution possible. Just change the order, so that the highest resolution is at the beginning, and you should be fine. Restart X after you edited the file, and you should have a resolution that suites your needs. You might want to look at the parameter "DefaultDepth", too. If it is set to 8 (8 bit = 256 colors) you might want to set it to an higher "Depth" value. HTH Christian