The Chakra Project - Forums

trust only movement...

You are not logged in.

#1 2009-12-25 05:06:40

brando56894
Enthusiast
Registered: 2009-02-04
Posts: 154

[Solved] Fonts look Crappy After Most Recent Update

After the most recent update (yesterday) my fonts started to look like crap and I can't seem to figure out why or how to fix it, its really annoying me. Anyone have any ideas? Ive tried changing to a different font and restarting the X server/kdm, neither of which helped.

Picture

Last edited by brando56894 (2009-12-25 05:07:06)

Offline

 

#2 2009-12-27 11:01:26

bananaoomarang
Apprentice
Registered: 2009-12-21
Posts: 11

Re: [Solved] Fonts look Crappy After Most Recent Update

same problem almost certainly related to this.

http://chakra-project.org/bbs/viewtopic.php?id=2021

Offline

 

#3 2009-12-27 12:03:14

Punky
Enthusiast
From: Serbia, Bor
Registered: 2009-05-15
Posts: 165
Website

Re: [Solved] Fonts look Crappy After Most Recent Update

Look at thic topic, maybe can help:

http://chakra-project.org/bbs/viewtopic.php?id=2021

P.S. Sorry, I didn't see that you have put link before me.... lol

Last edited by Punky (2009-12-27 12:05:28)


I know just Tarzan english....

Offline

 

#4 2009-12-28 08:20:01

brando56894
Enthusiast
Registered: 2009-02-04
Posts: 154

Re: [Solved] Fonts look Crappy After Most Recent Update

Yep that fixed it thanks guys.

Offline

 

#5 2009-12-28 09:10:18

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

KDM still looks bad for no matter what I do at the moment. Restarting doesn't help either.

Offline

 

#6 2009-12-28 20:50:15

brando56894
Enthusiast
Registered: 2009-02-04
Posts: 154

Re: [Solved] Fonts look Crappy After Most Recent Update

Ive seen people say that their KDM looks crappy yet mine always looked like it did before, it seemed to affect on certain things.

Offline

 

#7 2009-12-29 11:24:21

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

It seems like anti-aliasing doesn't work in KDM at the moment. Can't figure out what is the cause of it though. Could it be the video drivers? What are people using that experience this problem with KDM? I'm using the latest nvidia beta drivers from AUR on 64 bit Arch Linux with KDEmod.

Offline

 

#8 2010-01-01 13:58:43

jospoortvliet
Member
Registered: 2008-12-22
Posts: 67

Re: [Solved] Fonts look Crappy After Most Recent Update

Hmmm I do tend to think it is a setting somewhere. The default font has been set to disable anti-aliasing or something...

So go to system-settings, advanced, login manager, enter passwd, and on the first screen choose 'enable anti-aliassing'. Haven't rebooted yet to try it but it seems to make sense ;-)

Offline

 

#9 2010-01-02 13:10:11

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

jospoortvliet wrote:

Hmmm I do tend to think it is a setting somewhere. The default font has been set to disable anti-aliasing or something...

So go to system-settings, advanced, login manager, enter passwd, and on the first screen choose 'enable anti-aliassing'. Haven't rebooted yet to try it but it seems to make sense ;-)

Anti-aliasing is already enabled on KDM. The option is set so something is broken.

Offline

 

#10 2010-01-02 19:19:33

jospoortvliet
Member
Registered: 2008-12-22
Posts: 67

Re: [Solved] Fonts look Crappy After Most Recent Update

fettouhi wrote:

jospoortvliet wrote:

Hmmm I do tend to think it is a setting somewhere. The default font has been set to disable anti-aliasing or something...

So go to system-settings, advanced, login manager, enter passwd, and on the first screen choose 'enable anti-aliassing'. Haven't rebooted yet to try it but it seems to make sense ;-)

Anti-aliasing is already enabled on KDM. The option is set so something is broken.

Yep, after logging out and in again I noticed that too ;-)

Strange, as you can simply set it after logging in from Systemsettings. Maybe a xorg thing?!?

Offline

 

#11 2010-01-04 10:52:05

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

jospoortvliet wrote:

fettouhi wrote:

jospoortvliet wrote:

Hmmm I do tend to think it is a setting somewhere. The default font has been set to disable anti-aliasing or something...

So go to system-settings, advanced, login manager, enter passwd, and on the first screen choose 'enable anti-aliassing'. Haven't rebooted yet to try it but it seems to make sense ;-)

Anti-aliasing is already enabled on KDM. The option is set so something is broken.

Yep, after logging out and in again I noticed that too ;-)

Strange, as you can simply set it after logging in from Systemsettings. Maybe a xorg thing?!?

Could be...

Offline

 

#12 2010-01-11 13:53:48

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

Anybody been able to debug this issue?

Offline

 

#13 2010-01-11 15:06:18

manutortosa
Core-Team - Admin
From: Reus - Spain
Registered: 2009-03-22
Posts: 651

Re: [Solved] Fonts look Crappy After Most Recent Update

I'm searching a workaround now....


Manuel Tortosa - manutortosa@chakra-project.org

Offline

 

#14 2010-01-17 02:48:36

manutortosa
Core-Team - Admin
From: Reus - Spain
Registered: 2009-03-22
Posts: 651

Re: [Solved] Fonts look Crappy After Most Recent Update

Well i found a workaround, you must edit your /etc/fonts/fonts.conf and search these lines:

<!-- Font directory list -->

    <dir>/usr/share/fonts</dir>
   
    <dir>~/.fonts</dir>

and after these lines add these:

<!-- Patch for fonts -->

    <match target="font">
        <edit mode="assign" name="rgba">
            <const>rgb</const>
        </edit>
        <edit mode="assign" name="hinting">
            <bool>true</bool>
        </edit>
        <edit mode="assign" name="hintstyle">
            <const>hintslight</const>
        </edit>
        <edit mode="assign" name="antialias">
            <bool>true</bool>
        </edit>
    </match>

Now save and reboot, KDM fonts solved, i tested in some resolutions, anyone can test it please?

Last edited by manutortosa (2010-01-17 02:49:06)


Manuel Tortosa - manutortosa@chakra-project.org

Offline

 

#15 2010-01-17 05:40:35

andrew
Enthusiast
Registered: 2009-04-05
Posts: 100

Re: [Solved] Fonts look Crappy After Most Recent Update

Works for me also - thanks for posting.

Offline

 

#16 2010-01-17 09:34:26

asrob
Newbie
From: Hungary
Registered: 2010-01-07
Posts: 6

Re: [Solved] Fonts look Crappy After Most Recent Update

It works, thanks.

Offline

 

#17 2010-01-17 10:14:09

hcooh
Apprentice
Registered: 2010-01-09
Posts: 14

Re: [Solved] Fonts look Crappy After Most Recent Update

This is great ! it solved the problem for me too.
Thanks for sharing the tip !

Offline

 

#18 2010-01-17 14:41:20

tetris4
[Greek translator]
Registered: 2009-12-11
Posts: 202
Website

Re: [Solved] Fonts look Crappy After Most Recent Update

This fixed both the KDM fonts and the fonts when opening folders/files as root.

Thnx smile

Offline

 

#19 2010-01-18 19:20:34

fettouhi
Enthusiast
Registered: 2009-01-24
Posts: 166

Re: [Solved] Fonts look Crappy After Most Recent Update

Yep, that fixed it for me big_smile also.

Offline

 

#20 2010-01-18 20:40:06

manutortosa
Core-Team - Admin
From: Reus - Spain
Registered: 2009-03-22
Posts: 651

Re: [Solved] Fonts look Crappy After Most Recent Update

Well the new ISO have this clue solved.


Manuel Tortosa - manutortosa@chakra-project.org

Offline

 

Board footer

Powered by FluxBB