From owner-freebsd-questions@FreeBSD.ORG Mon May 26 09:09:32 2003 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 F089837B401 for ; Mon, 26 May 2003 09:09:32 -0700 (PDT) Received: from thalia.otenet.gr (thalia.otenet.gr [195.170.0.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0D0F43F93 for ; Mon, 26 May 2003 09:09:31 -0700 (PDT) (envelope-from keramida@freebsd.org) Received: from gothmog.gr (patr530-b100.otenet.gr [195.167.121.228]) by thalia.otenet.gr (8.12.9/8.12.9) with ESMTP id h4QG9ROq015151; Mon, 26 May 2003 19:09:28 +0300 (EEST) Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.12.9/8.12.9) with ESMTP id h4QG9Pg3001689; Mon, 26 May 2003 19:09:25 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.gr (8.12.9/8.12.9/Submit) id h4QFUcht001550; Mon, 26 May 2003 18:30:38 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Mon, 26 May 2003 18:30:38 +0300 (EEST) From: Giorgos Keramidas X-X-Sender: giorgos@gothmog To: Katinka Mills In-Reply-To: Message-ID: <20030526182347.C1441@gothmog> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-questions@freebsd.org Subject: Re: ncurses 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, 26 May 2003 16:09:33 -0000 On 2003-05-26 22:34, Katinka Mills wrote: > > I have googled and I have RTFM'd but I am missing something :o( > How do I set the background colour of the ENTIRE window and screen ? > I just hate black lol and would like blue :o) Look at the manpage of vidcontrol: $ man vidcontrol You should be able to change the current colour of console terminals like this: $ vidcontrol white blue For extra fun, you can change the colours used for "reverse video" too, with something like: $ vidcontrol -r blue white white blue or even add a border of the same colour: $ vidcontrol -b blue -r blue white white blue When you play around and decide what colour combination you want to keep, it's easy to make the change in /etc/rc.conf to set these colours automatically at boot time. Just add the colours you like best to the 'allscreens_flags' variable (add it to a new line if you don't have it already), i.e. allscreens_flags="-b blue -r blue white white blue" - Giorgos