From owner-freebsd-questions@FreeBSD.ORG Sat Jul 19 18:16:02 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 3DD6437B401 for ; Sat, 19 Jul 2003 18:16:02 -0700 (PDT) Received: from binarysink.homeunix.org (pD9EC5669.dip.t-dialin.net [217.236.86.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A64343F3F for ; Sat, 19 Jul 2003 18:16:01 -0700 (PDT) (envelope-from timewax@binarysink.homeunix.org) Received: by binarysink.homeunix.org (Postfix, from userid 1001) id 760C440E7; Sun, 20 Jul 2003 03:15:59 +0200 (CEST) Date: Sun, 20 Jul 2003 03:15:59 +0200 From: Holger Bauer To: freebsd-questions@freebsd.org Message-Id: <20030720031559.27dbaa58.bauer.holger@gmx.de> In-Reply-To: <200307191552.04153.phil@sal-n-phil.net> References: <200307191552.04153.phil@sal-n-phil.net> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Changing gtk application fonts outside of gnome X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: timewax@web.de List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jul 2003 01:16:02 -0000 On Sat, 19 Jul 2003 15:52:04 +0100 Phil Payne wrote: > Hi, > > I'm running FreeBSD 4-stable, XFree86 4.30 & windowmaker 0.80.2. > Default resolution and bitdepth is 1280x1024x24. > > Whenever I start GTK based apps (e.g. evolution, pan) I'm finding the > application font size is too small to be readable. I've had a search > through the mail archives and googled but I can't find anything > explaining... > > ... how to change the default font for GTK apps outside of a gnome > environment. > > Does anyone know if/how this can be done easily? > > I mean... I could lower the resolution but that feels a little > defeatist. > > Please include me personally on the reply as I won't be receiving the > list email for a while. > > Thanks, > Phil. Hi, put some lines like these in your $HOME/.gtkrc for gtk1 style "user-font" { font="-bitstream-bitstream vera serif-medium-r-normal-*-*-100-*-*-p-*-iso8859-15" } and in $HOME/.gtkrc-2.0 for gtk2 style "user-font" { font_name="Bitstream Charter 14" } I also recommend you have a look at gtk-theme-switch in ports, which lets you adjust gtk-themes/fonts easily. The gtk2-version wasn't in ports last time I checked, but you can easily compile it yourself. Holger