From owner-freebsd-questions@FreeBSD.ORG Fri Dec 10 15:26:53 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E96210657C0 for ; Fri, 10 Dec 2010 15:26:53 +0000 (UTC) (envelope-from parv@pair.com) Received: from hrndva-omtalb.mail.rr.com (hrndva-omtalb.mail.rr.com [71.74.56.122]) by mx1.freebsd.org (Postfix) with ESMTP id EF80B8FC1C for ; Fri, 10 Dec 2010 15:26:52 +0000 (UTC) Received: from hrndva-omtalb.mail.rr.com ([10.128.143.52]) by hrndva-qmta03.mail.rr.com with ESMTP id <20101210150949239.WGKC18851@hrndva-qmta03.mail.rr.com> for ; Fri, 10 Dec 2010 15:09:49 +0000 X-Authority-Analysis: v=1.1 cv=kXGwZUU/u1JTMRv8Axk4W0omja+vfTT+sGlOkodD8F8= c=1 sm=0 a=9nblukrRGzYA:10 a=kj9zAlcOel0A:10 a=x70CTr1ZZrJ3fMZmolv2ow==:17 a=fPIMVpmNc5VW3AZyDrMA:9 a=jUtjwKygXnndotxKIDAA:7 a=1Kn8zijsTa3P97DMszU7vhIb9TEA:4 a=CjuIK1q_8ugA:10 a=x70CTr1ZZrJ3fMZmolv2ow==:117 X-Cloudmark-Score: 0 X-Originating-IP: 70.95.170.229 Received: from [70.95.170.229] ([70.95.170.229:63727] helo=localhost.hawaii.res.rr.com) by hrndva-oedge02.mail.rr.com (envelope-from ) (ecelerity 2.2.3.46 r()) with ESMTP id 52/E1-14897-E72420D4; Fri, 10 Dec 2010 15:08:47 +0000 Received: by localhost.hawaii.res.rr.com (Postfix, from userid 1000) id 4E0CF5CF9; Fri, 10 Dec 2010 05:09:30 -1000 (HST) Date: Fri, 10 Dec 2010 05:09:30 -1000 From: parv@pair.com To: Lars Eighner Message-ID: <20101210150930.GA1985@holstein.holy.cow> Mail-Followup-To: Lars Eighner , freebsd-questions@freebsd.org References: <20101209114208.C1131@qroenaqrq.6qbyyneqvnyhc.pbz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20101209114208.C1131@qroenaqrq.6qbyyneqvnyhc.pbz> Cc: freebsd-questions@freebsd.org Subject: Re: Make gtk widgets use a larger font 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: Fri, 10 Dec 2010 15:26:53 -0000 in message <20101209114208.C1131@qroenaqrq.6qbyyneqvnyhc.pbz>, wrote Lars Eighner thusly... > > How do I make gtk widgets use larger fonts? I found an old linux > FAQ on this, but it appears to have nothing to do with the way > configuration works on FreeBSD. In ~/.gtkrc-2.0, I have ... style "default" { #font="-adobe-new century schoolbook-medium-r-normal--14-*-*-*-*-*-iso8859-1" #font_name="New Century Schoolbook 12" font_name="Bitstream Vera Sans 10" } style "user-tooltip" { font_name="Screen 15" } # 'gtk-font-name' property is needed for damned Firefox 1.5 as # 'font_name' property alone didn't work, but does for Gimp 2.2. # Anti-aliased fonts are used though i would love to use # non-anti-aliased font in order to get New Century Schoolbook 14 # font. #gtk-font-name = "Bitstream Vera Serif 12" #gtk-font-name = "New Century Schoolbook 12" gtk-font-name = "Bitstream Vera Sans 10" widget "*" style "default" widget "*tooltip*" style "user-tooltip" ... and in ~/.gtkrc ... style "default" { font="-adobe-new century schoolbook-medium-r-normal--18-*-*-*-p-*-iso8859-1" } style "user-tooltip" { font="-sgi-screen-bold-r-normal--16-*-*-*-*-0-iso8859-1" } widget "*" style "default" widget "*tooltip*" style "user-tooltip" - parv --