From owner-freebsd-questions Tue Apr 11 18:36:14 2000 Delivered-To: freebsd-questions@freebsd.org Received: from carbon.btinternet.com (carbon.btinternet.com [194.73.73.92]) by hub.freebsd.org (Postfix) with ESMTP id AF19837BB43 for ; Tue, 11 Apr 2000 18:36:10 -0700 (PDT) (envelope-from mark@ukug.uk.freebsd.org) Received: from [195.99.44.241] (helo=parish.my.domain) by ruthenium.btinternet.com with esmtp (Exim 2.05 #1) id 12f8nO-0005sC-00; Tue, 11 Apr 2000 23:06:06 +0100 Received: (from mark@localhost) by parish.my.domain (8.9.3/8.9.3) id XAA01992; Tue, 11 Apr 2000 23:03:50 +0100 (BST) (envelope-from mark) Date: Tue, 11 Apr 2000 23:03:49 +0100 From: Mark Ovens To: Gary Kline Cc: freebsd-questions@freebsd.org Subject: Re: vidcontrol to set background... Message-ID: <20000411230349.E235@parish> References: <200004111715.KAA24595@tera.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004111715.KAA24595@tera.com>; from kline@tera.com on Tue, Apr 11, 2000 at 10:15:43AM -0700 Organization: Total lack of Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Apr 11, 2000 at 10:15:43AM -0700, Gary Kline wrote: > > Anybody know how to set the console (or vconsole) to a light background > with dark type? `vidcontrol show' shows you various flavors of fg and > bg, but I didn't find anything that worked. (I found some pretty > interestly ugly combos, tho.... :) > Not sure exactly what you're asking here; you obviously know about ``vidcontrol '' This script shows a wider range of combinations: #!/bin/sh # Display ANSI colours. # esc="\033[" echo -e "\t 40\t 41\t 42\t 43\t 44 45\t46\t 47" for fore in 30 31 32 33 34 35 36 37; do line1="$fore " line2=" " for back in 40 41 42 43 44 45 46 47; do line1="${line1}${esc}${back};${fore}m Normal ${esc}0m" line2="${line2}${esc}${back};${fore};1m Bold ${esc}0m" done echo -e "$line1\n$line2" done > thanks for some ideas, > > gary > > > > -- > Gary Kline > Cray Inc > Seattle, Washington > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message -- ...and on the eighth day God created UNIX ________________________________________________________________ FreeBSD - The Power To Serve http://www.freebsd.org My Webpage http://ukug.uk.freebsd.org/~mark/ mailto:mark@ukug.uk.freebsd.org http://www.radan.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message