From owner-freebsd-hackers Sat Jan 11 17:12:53 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id RAA21797 for hackers-outgoing; Sat, 11 Jan 1997 17:12:53 -0800 (PST) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id RAA21789 for ; Sat, 11 Jan 1997 17:12:50 -0800 (PST) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sat, 11 Jan 1997 20:11:41 -0500 (EST) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA19366; Sat, 11 Jan 97 20:11:40 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id UAA15508; Sat, 11 Jan 1997 20:10:04 -0500 Message-Id: Date: Sat, 11 Jan 1997 20:10:03 -0500 From: rhh@ct.picker.com (Randall Hopper) To: kuku@gilberto.physik.rwth-aachen.de (Christoph Kukulies) Cc: freebsd-hackers@FreeBSD.org Subject: Re: A cool xterm? References: <199701101606.IAA03133@impulse.csl.sri.com> <199701101746.SAA01138@gilberto.physik.rwth-aachen.de> X-Mailer: Mutt 0.56 Mime-Version: 1.0 In-Reply-To: <199701101746.SAA01138@gilberto.physik.rwth-aachen.de>; from Christoph Kukulies on Jan 10, 1997 18:46:31 +0100 Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Christoph Kukulies: |Running fvwm95-2 my color_xterms that pop up initially (by .xinitrc - I'm |using startx) have 3D-effect scrollbars and shaded edged pop up menues |but with dithered gray shades rather than the colored shades. | |Only newly created color_xterms (launched from the tool bar) show the |correct colors and solid colored shades. I event put the resources |into .Xresources - no change. Any ideas? It sounds like the resources aren't getting xrdbed soon enough (for the .Xdefaults/.Xresources case), or your XAPPLRESDIR/XUSERFILESEARCHPATH isn't getting set soon enough (for the Color_xterm/XTerm app-default file case). To cover both cases, flip these lines into the top of your .xinitrc, before your invocation of fvwm95-2 and before invocation of your color_xterms (if you're invoking them here and not in the .fvwm2rc95 file). Tweak XAPPLRESDIR to where you keep your local class resource files (e.g. XTerm/Color_xterm). XAPPLRESDIR=$HOME/cfg/app-defaults; export XAPPLRESDIR userresources=$HOME/.Xresources if [ -f $userresources ]; then xrdb -merge $userresources fi Randall Hopper