Monaco font not antialiased in some GTK apps












5















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.










share|improve this question





























    5















    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.










    share|improve this question



























      5












      5








      5








      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          3 Answers
          3






          active

          oldest

          votes


















          2














          Use older monaco font instead of the latest one solved this issue for me.






          share|improve this answer































            1














            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.






            share|improve this answer

































              0














              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.






              share|improve this answer























                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
                });


                }
                });














                draft saved

                draft discarded


















                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









                2














                Use older monaco font instead of the latest one solved this issue for me.






                share|improve this answer




























                  2














                  Use older monaco font instead of the latest one solved this issue for me.






                  share|improve this answer


























                    2












                    2








                    2







                    Use older monaco font instead of the latest one solved this issue for me.






                    share|improve this answer













                    Use older monaco font instead of the latest one solved this issue for me.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 28 '11 at 15:23









                    kholiskholis

                    18114




                    18114

























                        1














                        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.






                        share|improve this answer






























                          1














                          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.






                          share|improve this answer




























                            1












                            1








                            1







                            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.






                            share|improve this answer















                            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.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Feb 5 at 9:40

























                            answered Dec 21 '12 at 15:13









                            grawitygrawity

                            239k37508561




                            239k37508561























                                0














                                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.






                                share|improve this answer




























                                  0














                                  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.






                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    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.






                                    share|improve this answer













                                    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.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Apr 13 '11 at 19:37









                                    user60598user60598

                                    22629




                                    22629






























                                        draft saved

                                        draft discarded




















































                                        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.




                                        draft saved


                                        draft discarded














                                        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





















































                                        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







                                        Popular posts from this blog

                                        How do I know what Microsoft account the skydrive app is syncing to?

                                        Grease: Live!

                                        When does type information flow backwards in C++?