Gentoo Archives: gentoo-dev

From: Andreas Jonsson <de@×××××××××××××××××××.com>
To: gentoo-dev@××××××××××.org
Subject: Re: [gentoo-dev] AA and KDE in gentoo
Date: Tue, 17 Jul 2001 14:53:42
Message-Id: 5.1.0.14.1.20010717225313.00a232e0@m1.315.telia.com
In Reply to: [gentoo-dev] AA and KDE in gentoo by Viktor Lakics
1 > The second question: I love AA, but I absolutely need konsole with the
2 "linux"
3 > console font (not AA-ed). Konsole looks crap when I use AA-ed fonts. Is
4 there
5 > any way to have a specific app started with non AA-d fonts from an AA-ed
6 > environment?
7
8 Maybe something like this will work? Create a script that looks like
9 something this (if QT_XFT should be 0 if AA is off):
10
11 ------------------
12
13 #!/bin/sh
14
15 QT_XFT=0
16 konsole
17
18 ------------------
19
20 Change all shortcuts that point straight to konsole to that script... That
21 should run konsole without AA.
22
23 - Andreas