Monaco font not antialiased in some GTK apps
I have a strange issue with the Monaco font on Ubuntu Karmic. I have recently installed the Monaco font just to see what the hype is all about.
The problem that I am facing now is that is not antialiased in some GTK apps (namely in Firefox and Eclipse), but it is antialiased in KDE apps (konsole) and in Chromium. I have hinting set to slight.
Any help is appreciated.
ubuntu-9.10 fonts kde gtk anti-aliasing
add a comment |
I have a strange issue with the Monaco font on Ubuntu Karmic. I have recently installed the Monaco font just to see what the hype is all about.
The problem that I am facing now is that is not antialiased in some GTK apps (namely in Firefox and Eclipse), but it is antialiased in KDE apps (konsole) and in Chromium. I have hinting set to slight.
Any help is appreciated.
ubuntu-9.10 fonts kde gtk anti-aliasing
add a comment |
I have a strange issue with the Monaco font on Ubuntu Karmic. I have recently installed the Monaco font just to see what the hype is all about.
The problem that I am facing now is that is not antialiased in some GTK apps (namely in Firefox and Eclipse), but it is antialiased in KDE apps (konsole) and in Chromium. I have hinting set to slight.
Any help is appreciated.
ubuntu-9.10 fonts kde gtk anti-aliasing
I have a strange issue with the Monaco font on Ubuntu Karmic. I have recently installed the Monaco font just to see what the hype is all about.
The problem that I am facing now is that is not antialiased in some GTK apps (namely in Firefox and Eclipse), but it is antialiased in KDE apps (konsole) and in Chromium. I have hinting set to slight.
Any help is appreciated.
ubuntu-9.10 fonts kde gtk anti-aliasing
ubuntu-9.10 fonts kde gtk anti-aliasing
edited Apr 22 '10 at 15:20
quack quixote
35.3k1087119
35.3k1087119
asked Jan 10 '10 at 18:41
Bartosz RadaczyńskiBartosz Radaczyński
1265
1265
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Use older monaco font instead of the latest one solved this issue for me.
add a comment |
The font has an embedded bitmap version for certain font sizes. Turn it off in fontconfig:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ...other settings can be here... -->
<match target="font">
<test name="family">
<string>Monaco</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>
If you have fontconfig 2.10 or newer, put this in ~/.config/fontconfig/fonts.conf
. With older versions, edit ~/.fonts.conf
.
To change this system-wide, edit /etc/fonts/conf.d/fix-monaco.conf
.
You can also disable embedded bitmaps for all fonts, by removing the <test ...>
line. In my experience, embedded bitmaps are never useful; they always make the font ugly.
add a comment |
In GTK applications, the system font is controlled by ~/.Xresources. But in Firefox, the page display is controlled by the fontconfig system, so you have to make settings in ~/.fonts.conf.
Monaco does look better on a Mac. OS X has very aggressive antialiasing and it is hard to duplicate that effect on other systems. The closest you can get on Linux is to make your settings:
sub-pixel antialiasing = on
hint strength = slight
lcdfilter = lcddefault
To use the lcdfilter feature, you need libcairo2 1.10+. Even then, it will not have an effect in Firefox, since it doesn't use that system for rendering pages.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f93924%2fmonaco-font-not-antialiased-in-some-gtk-apps%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use older monaco font instead of the latest one solved this issue for me.
add a comment |
Use older monaco font instead of the latest one solved this issue for me.
add a comment |
Use older monaco font instead of the latest one solved this issue for me.
Use older monaco font instead of the latest one solved this issue for me.
answered Dec 28 '11 at 15:23
kholiskholis
18114
18114
add a comment |
add a comment |
The font has an embedded bitmap version for certain font sizes. Turn it off in fontconfig:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ...other settings can be here... -->
<match target="font">
<test name="family">
<string>Monaco</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>
If you have fontconfig 2.10 or newer, put this in ~/.config/fontconfig/fonts.conf
. With older versions, edit ~/.fonts.conf
.
To change this system-wide, edit /etc/fonts/conf.d/fix-monaco.conf
.
You can also disable embedded bitmaps for all fonts, by removing the <test ...>
line. In my experience, embedded bitmaps are never useful; they always make the font ugly.
add a comment |
The font has an embedded bitmap version for certain font sizes. Turn it off in fontconfig:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ...other settings can be here... -->
<match target="font">
<test name="family">
<string>Monaco</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>
If you have fontconfig 2.10 or newer, put this in ~/.config/fontconfig/fonts.conf
. With older versions, edit ~/.fonts.conf
.
To change this system-wide, edit /etc/fonts/conf.d/fix-monaco.conf
.
You can also disable embedded bitmaps for all fonts, by removing the <test ...>
line. In my experience, embedded bitmaps are never useful; they always make the font ugly.
add a comment |
The font has an embedded bitmap version for certain font sizes. Turn it off in fontconfig:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ...other settings can be here... -->
<match target="font">
<test name="family">
<string>Monaco</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>
If you have fontconfig 2.10 or newer, put this in ~/.config/fontconfig/fonts.conf
. With older versions, edit ~/.fonts.conf
.
To change this system-wide, edit /etc/fonts/conf.d/fix-monaco.conf
.
You can also disable embedded bitmaps for all fonts, by removing the <test ...>
line. In my experience, embedded bitmaps are never useful; they always make the font ugly.
The font has an embedded bitmap version for certain font sizes. Turn it off in fontconfig:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!-- ...other settings can be here... -->
<match target="font">
<test name="family">
<string>Monaco</string>
</test>
<edit name="embeddedbitmap">
<bool>false</bool>
</edit>
</match>
</fontconfig>
If you have fontconfig 2.10 or newer, put this in ~/.config/fontconfig/fonts.conf
. With older versions, edit ~/.fonts.conf
.
To change this system-wide, edit /etc/fonts/conf.d/fix-monaco.conf
.
You can also disable embedded bitmaps for all fonts, by removing the <test ...>
line. In my experience, embedded bitmaps are never useful; they always make the font ugly.
edited Feb 5 at 9:40
answered Dec 21 '12 at 15:13
grawitygrawity
239k37508561
239k37508561
add a comment |
add a comment |
In GTK applications, the system font is controlled by ~/.Xresources. But in Firefox, the page display is controlled by the fontconfig system, so you have to make settings in ~/.fonts.conf.
Monaco does look better on a Mac. OS X has very aggressive antialiasing and it is hard to duplicate that effect on other systems. The closest you can get on Linux is to make your settings:
sub-pixel antialiasing = on
hint strength = slight
lcdfilter = lcddefault
To use the lcdfilter feature, you need libcairo2 1.10+. Even then, it will not have an effect in Firefox, since it doesn't use that system for rendering pages.
add a comment |
In GTK applications, the system font is controlled by ~/.Xresources. But in Firefox, the page display is controlled by the fontconfig system, so you have to make settings in ~/.fonts.conf.
Monaco does look better on a Mac. OS X has very aggressive antialiasing and it is hard to duplicate that effect on other systems. The closest you can get on Linux is to make your settings:
sub-pixel antialiasing = on
hint strength = slight
lcdfilter = lcddefault
To use the lcdfilter feature, you need libcairo2 1.10+. Even then, it will not have an effect in Firefox, since it doesn't use that system for rendering pages.
add a comment |
In GTK applications, the system font is controlled by ~/.Xresources. But in Firefox, the page display is controlled by the fontconfig system, so you have to make settings in ~/.fonts.conf.
Monaco does look better on a Mac. OS X has very aggressive antialiasing and it is hard to duplicate that effect on other systems. The closest you can get on Linux is to make your settings:
sub-pixel antialiasing = on
hint strength = slight
lcdfilter = lcddefault
To use the lcdfilter feature, you need libcairo2 1.10+. Even then, it will not have an effect in Firefox, since it doesn't use that system for rendering pages.
In GTK applications, the system font is controlled by ~/.Xresources. But in Firefox, the page display is controlled by the fontconfig system, so you have to make settings in ~/.fonts.conf.
Monaco does look better on a Mac. OS X has very aggressive antialiasing and it is hard to duplicate that effect on other systems. The closest you can get on Linux is to make your settings:
sub-pixel antialiasing = on
hint strength = slight
lcdfilter = lcddefault
To use the lcdfilter feature, you need libcairo2 1.10+. Even then, it will not have an effect in Firefox, since it doesn't use that system for rendering pages.
answered Apr 13 '11 at 19:37
user60598user60598
22629
22629
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f93924%2fmonaco-font-not-antialiased-in-some-gtk-apps%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown