[SOLVED] Firefox and bad fonts

I would like to start using Firefox and its excellent plugins, but the only thing that prevents me are the fonts. They seem plain evil!
They are fuzzy and somehow too large and CTRL++ or CTRL+- won't help with the look. Take a loot at these:
Firefox: fonts are fuzzy and some characters are looking like painted - see the copyright sign for example! :evil: Also the distance between different characters in a word doesnt seem to be equal all the times and that makes it hard to grasp the word.
Mozilla Suite: crisp and clear
I think it is somehow xft - related, because I downloaded the standard Mozilla suite build and it also had these awful fonts and then tried the non-xft build and fonts were ok. In Appearance-Fonts they are described as Serif -> adobe-times-iso8859-1, Sans-serif -> adobe-helvetica-iso8859-1 and so on. How could I get these fonts appear in Firefox, too?
I have tried to compile Firefox myself with disable-xft option, but it fails with an error about gtk not being found in pkgconfig path.

What you call "crisp", I just call "aliased". The fonts in Opera are also aliased, which makes them look poor. Your Firefox's fonts look nice, except the fact that the autohinter is making them look sloppy. Comment that part out and see how it looks.
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- /etc/fonts/local.conf file for local customizations -->
<fontconfig>
<!--Use the Auto-Hinter-->
<!--<match target="pattern">
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>-->
<!--
Disable anti-aliasing for fonts that are size <=12
<match target="pattern">
<test qual="any" name="size" compare="less_eq">
<int>12</int>
</test>
<edit name="antialias" mode="assign"><bool>false</bool></edit>
</match>
-->
<!--
Enable sub-pixel rendering
<match target="font">
<test qual="all" name="rgba">
<const>unknown</const>
</test>
<edit name="rgba" mode="assign"><const>rgb</const></edit>
</match>
-->
</fontconfig>
Cheers.

Similar Messages

  • [SOLVED] Qt 4.7 - 4.8 and bad fonts hinting.

    Hi, since the upgrade to qt 4.8, font rendering of qt applications seems very bad to me.
    Before the upgrade, firefox and konqueror looked the same, here is now,
    I tried in graphicssystem native and raster:
    http://ompldr.org/vYnZ2Mw/firefox1.png
    http://ompldr.org/vYnZ2NQ/konqueror_native1.png
    http://ompldr.org/vYnZ2NA/firefox2.png
    http://ompldr.org/vYnZ2Nw/konqueror_raster.png
    http://ompldr.org/vYnZ2Ng/konqueror_native2.png
    I tried autohinter too, but gtk apps (cairo) seems always better, what happened?
    My .fonts.conf:
    <?xml version='1.0'?>
    <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
    <fontconfig>
    <match target="font">
    <edit mode="assign" name="rgba">
    <const>rgb</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="hinting">
    <bool>true</bool>
    </edit>
    </match>
    <match target="font">
    <edit name="autohint" mode="assign">
    <bool>false</bool>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="hintstyle">
    <const>hintslight</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="lcdfilter">
    <const>lcddefault</const>
    </edit>
    </match>
    <match target="font">
    <test name="family">
    <string>Segoe UI</string>
    </test>
    <edit mode="assign" name="hintstyle">
    <const>hintslight</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="antialias">
    <bool>true</bool>
    </edit>
    </match>
    </fontconfig>
    Last edited by kokoko3k (2011-12-30 14:16:23)

    I casually managed to solve this issue by playing with fontconfig settings.
    I'm really not sure if this is the correct way, but now i've the same font rendering i've had before qt 4.8 with hintstyle=hintslight.
    My Steps are:
    yaourt -S freetype2-infinality
    * do not install fontconfig-infinality
    edit ~/.fonts.conf as follows
    <?xml version='1.0'?>
    <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
    <fontconfig>
    <match target="font">
    <edit mode="assign" name="rgba">
    <const>rgb</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="hinting">
    <bool>true</bool>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="autohint">
    <bool>true</bool>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="lcdfilter">
    <const>lcddefault</const>
    </edit>
    </match>
    <match target="font">
    <edit mode="assign" name="antialias">
    <bool>true</bool>
    </edit>
    </match>
    </fontconfig>
    the trick seems:hinting+autohint+hintfull=hintslight (!?)
    edit /etc/profile.d/infinality-settings.sh and add/replace with those values:
    SET_XFT_SETTINGS=true
    XFT_SETTINGS="
    Xft.antialias: 1
    Xft.autohint: 1
    Xft.dpi: 96
    Xft.hinting: 1
    Xft.hintstyle: hintslight
    Xft.lcdfilter: lcddefault
    Xft.rgba: rgb
    export INFINALITY_FT_AUTOFIT_FORCE_SLIGHT_HINTING=true
    export INFINALITY_FT_FILTER_PARAMS="06 25 44 25 06"
    export INFINALITY_FT_GRAYSCALE_FILTER_STRENGTH=0
    export INFINALITY_FT_GAMMA_CORRECTION="0 100"
    export INFINALITY_FT_BRIGHTNESS="0"
    export INFINALITY_FT_CONTRAST="0"
    export INFINALITY_FT_AUTOHINT_INCREASE_GLYPH_HEIGHTS=false
    export INFINALITY_FT_AUTOHINT_HORIZONTAL_STEM_DARKEN_STRENGTH=0
    export INFINALITY_FT_AUTOHINT_VERTICAL_STEM_DARKEN_STRENGTH=0
    export INFINALITY_FT_AUTOHINT_SNAP_STEM_HEIGHT=0
    export INFINALITY_FT_FRINGE_FILTER_STRENGTH=0
    export INFINALITY_FT_WINDOWS_STYLE_SHARPENING_STRENGTH=0
    export INFINALITY_FT_CHROMEOS_STYLE_SHARPENING_STRENGTH=0
    export INFINALITY_FT_STEM_ALIGNMENT_STRENGTH=0
    export INFINALITY_FT_STEM_FITTING_STRENGTH=0
    export INFINALITY_FT_STEM_SNAPPING_SLIDING_SCALE=0
    export INFINALITY_FT_USE_VARIOUS_TWEAKS=true
    export INFINALITY_FT_USE_KNOWN_SETTINGS_ON_SELECTED_FONTS=false
    export INFINALITY_FT_GLOBAL_EMBOLDEN_X_VALUE=0
    export INFINALITY_FT_GLOBAL_EMBOLDEN_Y_VALUE=0
    export INFINALITY_FT_BOLD_EMBOLDEN_X_VALUE=0
    export INFINALITY_FT_BOLD_EMBOLDEN_Y_VALUE=0
    Now logout/login.
    Starting from there, you can further tweak infinality
    Ah, openoffice also looks good out of the box, no need to install extra '*uglyfix*' packages
    ...and chromium still sucks like nothing happened.
    -EDIT-
    Remember to not change the hintstyle, leave it to hintfull.
    Last edited by kokoko3k (2011-12-30 14:19:40)

  • Safari 3 Update Leads to Tears and Bad Font

    what a day.
    so i've updated my mac os x version 10.4.11, which included the new safari 3 update.
    until i decided to do this, i would use safari and safari only because firefox and netscape had very hard to read fonts in them (also Very slow!!-on this machine), of which i've found you cannot change through preferences. well, the update to safari also changed its fonts to match the ones in firefox and netscape. it hurts my eyes/head to read and is extremely annoying. i decided to throw away safari, in hopes of downloading the old one, only to find that this isn't possible after you've completed the 10.4.11 update (see this post: http://discussions.apple.com/thread.jspa?threadID=1241335&tstart=0 ).
    sounds like it's going to be a matter of finding my disc before i can have safari again (i'm in the process of moving to a new home). although, i imagine that even after reloading safari i will still have this font issue. any ideas to why all my browsers have the same messed up font? it's almost like there is a gap within each individual letter. see here: http://i228.photobucket.com/albums/ee41/Lulu_Lagoon/Picture8.png
    my @ symbols do not show up in this font either.

    *Hi paperplain, Welcome* to Apple's Users Help Users Forums.
    In addition to above, Public Library or Internet Café w CD.
    Good Luck, JP

  • [SOLVED] firefox and thunderbird freeze

    Hi, since a few day I've had issues with both firefox 9 and thunderbird 9. Firefox starts normally, but whenever I touch try to open a menu it freezes. If I start ff from a terminal I don't get any error error messages it just hangs. Killing the program from the gui does not work, but I when started from the terminal ctrl-c kills it without any problems. The problem only occurs for the main toolbar, my bookmarks bar works fine, as do the home button, url bar and such. Thunderbird shows similar freezes, but they occur consistently after starting the program. I think the problems started after upgrading to version 9, but I am not entirely sure, since I don't use the laptop on which the problem occurs much for email and browsing.
    I tried renaming my .mozilla folder so I could make a fresh start, but this had no effect, nor did starting firefox in safe-mode. I also tried downgrading to 8.x but then it froze on startup. Since gtk3 was updated at the same time as well, I tried downgrading that one as well, but to no effect As the program is frozen the memory and cpu use are normal.
    Does anyone have any suggestions towards finding a solution?
    [edit]I have two arch installations on this laptop and just tried updating the other (somewhat neglected) install. In this one all works fine.I'm trying to go over the differences between the two now.[/edit]
    Last edited by FreeTheBee (2011-12-28 11:27:29)

    The output is mostly gibberish to me but it did help
    When I click a menu button in firefox the output of strace turned into a seemingly endless loop of the following
    readlink("/home/patrick/.pulse/6d395381881edc62e30ef1dc0000052a-runtime", "/tmp/pulse-PKdhtXMmr18n"..., 99) = 23
    lstat64("/tmp/pulse-PKdhtXMmr18n", 0xbfe89d70) = -1 ENOENT (No such file or directory)
    umask(077) = 022
    mkdir("/tmp/pulse-BtWOtBrBLg7x", 0700) = 0
    umask(022) = 077
    symlink("/tmp/pulse-BtWOtBrBLg7x", "/home/patrick/.pulse/6d395381881edc62e30ef1dc0000052a-runtime.tmp") = -1 EEXIST (File exists)
    rmdir("/tmp/pulse-BtWOtBrBLg7x") = 0
    nanosleep({0, 10000000}, NULL) = 0
    readlink("/home/patrick/.pulse/6d395381881edc62e30ef1dc0000052a-runtime", "/tmp/pulse-PKdhtXMmr18n"..., 99) = 23
    lstat64("/tmp/pulse-PKdhtXMmr18n", 0xbfe89d70) = -1 ENOENT (No such file or directory)
    umask(077) = 022
    mkdir("/tmp/pulse-OHwEwCYtPIhw", 0700) = 0
    umask(022) = 077
    symlink("/tmp/pulse-OHwEwCYtPIhw", "/home/patrick/.pulse/6d395381881edc62e30ef1dc0000052a-runtime.tmp") = -1 EEXIST (File exists)
    rmdir("/tmp/pulse-OHwEwCYtPIhw") = 0
    nanosleep({0, 10000000}, ^C <unfinished ...>
    I assumed the .pulse folder is related to pulseaudio, because of the name and the contents, so I uninstalled pulseaudio and friends and deleted the ~/.pulse folder. Now firefox and thunderbird work again as they should. And as a bonus spotify finally works again as well. Pulseaudio has been giving me a headache on this laptop but I don't understand why it interfered with firefox.
    Thanks for helping out.
    If the glibc problem turns out to persist I can undo the solved tag ofc.
    Last edited by FreeTheBee (2011-12-28 11:28:44)

  • [SOLVED] Firefox and Thunderbird intermittently runs without a window

    I'm having an intermittent problem with Firefox and Thunderbird. When I attempt to launch either firefox or thunderbird the respective application will show up in htop (I see a bunch of firefox threads) but no window appears and the CPU load is 0%. When the application (Firefox or Thunderbird) is running but not visible, the mouse and keyboard remain fully functional; e.g. I can launch a new terminal and switch work-spaces without trouble. Repeatedly killing the application and restarting it will sometimes result in the application loading properly (i.e. I get a fully functional window with working menus, etc).
    I'm currently using Firefox version 8.0.1 and Thunderbird version 8.0 with the i3 window manager on my Macbook 5,1 (with nvidia drivers). I did a full system update about a month ago. I've not experienced this problem on my workstation: a custom built AMD system with ATI graphics. Both my macbook and custom workstation are using the same versions of i3, Firefox, and Thunderbird.
    I did a little experiment and temporarily switch over to fluxbox for a while. While using fluxbox I was unable to replicate the symptoms; both Firefox and thunderbird appear to work fine. But, since the problem is "random" it is hard to say for sure if this was just a coincidence.
    I tried launching firefox and thunderbird from a terminal: no errors or output of any kind are printed to the terminal even when the application window does not appear. Launching Firefox in safemode does not appear to have any influence.
    I saw a similar bug report on the mozilla website dating back a few years (version 3.0 I believe of Firefox). But I didn't see any links to a solution or explanation of the problem.
    Any advise on how to debug this?
    Thanks in advance.
    (I appoligize if this has already been addressed somewhere else. My search attempts did not yield any relevant hits.)
    EDIT: marked as solved
    Last edited by bsilbaugh (2012-03-14 23:23:52)

    I recently did a full system update, which includes a kernel upgrade (from 3.0 to 3.2), and the symptoms have disappeared. Firefox and Thunderbird appear to be functioning normally.
    It's still not clear what was causing the original problem. I guess I'll just have to live with the mystery.

  • Firefox and bad image zoom

    Hi to all,
    Compare these images:
    Zoom with Firefox under Linux
    Zoom with Google Chrome under Linux
    Firefox under Windows
    (image taken from: http://www.tomshw.it/cont/articolo/cons … 26/13.html )
    as you can see:
    * Firefox under Linux: image zoom is done without antialiasing
    * Firefox under Windows: image zoom is done with antialiasing
    * Chrome under Linux: image zoom is done with antialiasing
    is there any way to fix this issue with Firefox under Linux?

    Ramses de Norre wrote:Google reveals much info. Look at the firefox and ubuntu bug trackers, both have extensive discussions about the issue.
    Hi,
    I'm not sure if I get your meaning here.
    I googled around, and I find mostly references to font problems - which is not the issue here - and the imagezoom.defaultGlobalZoom setting, which does not seem related to activating / deactivating antialising for images when zooming.
    I have the same issues as trapanator. FF in arch64 does not apply antialising to the images when zooming, but opera does. Also FF in windows does. I took a look in the PKGBUILD, but did not find anything suggesting that the antialiasing is disabled at compile time - so it seems to be a configuration issue.
    Any ideas?
    Thanks!
    Best regards,
    Eduardo

  • Open a Telnet link with Firefox and bad things can happen

    I happened to come across a site with a number of links, and the one I chose happened to be a telnet link. Here was my experience, and I had to put myself into the shoes of the average user who knows nothing about programming.
    The link that caused Firefox trouble when Firefox was chosen to run it is this:
    telnet://dxc.nc7j.com:7300
    Click on the link and Firefox tells you that you need to select a program to open the Internet Shortcut Shell extension DLL. I have never heard of this, and I have no idea what to do here.
    Choose to open with Firefox.
    Now, if some error-handling routine had caught that Firefox, which is not capable of doing Telnet, was selected by the unknowing person behind the keyboard to go ahead and do Telnet, the error-handler would advise the user to the fact that this protocol is not supported and kill the process that is going to run out-of-control otherwise. Or cause to open the program that will run the Telnet session.
    Better yet, I clicked on the Telnet link and offer a better description of the choices.
    After all of what happened below, I installed Iron, a Chromium-based browser, and it opened a Telnet session window right away.
    So what did happen, I clicked on Firefox to do this chore and was greeted by a never-ending opening of empty tabs and upon closing the browser, it relaunched and was off to the races again. And again.
    OK so this ain't getting us anywhere.
    Firefox opens once again, this time hit the big red X to close it, and let the prompt to close however many tabs anyway prompt sitting there.
    I chose to run CCleaner, and I set that to blow away Firefox Cache and session. Run CCleaner, and tell it to force Firefox closed when it prompts that Firefox is open.
    If by chance Firefox launches again, timing was perfect that the file that was causing Firefox to open was not yet cleaned, so run the CCleaner again a few times. When Firefox is no longer opening, we are back to the world of sanity.
    Now, I could go in and reset the Tools Options Applications tab and look for Telnet, and replace the use of Firefox with "ask me."
    Fortunately, I know a little more than some about the computer, and I knew I had to use a utility to clear out the Firefox cache.
    You have a description of the issue in your knowledgebase, but it has Firefox opening endless empty tabs, but Firefox was closed and the situation is under control.. Restart Firefox manually, start a new session and then enter the Tools menu and fix the setting.
    There is a knowledge base article on this very topic, but it has the user close Firefox and then all is back to normal. One can open Firefox and get into the menu to fix the issue. There was a mention in there about malware as a possible cause of the constant reopening I experienced, but Malwarebytes scans were clean.
    "Well, this is embarrassing!" I have seen that nice touch to Firefox for many years, and may I compliment those who thought of that one.

    I agree, it can become a vicious circle.
    The default setting to try to restore all the windows and tabs automatically after a crash isn't the best setting. Personally I do change that so I get the "this is embarrassing" screen. So one option would be to file a bug report suggesting this be changed going forward.
    Another potential follow-up action would be to update the knowledge base article to better address how to recover in these situations. For example, a user could start up Firefox without restoring the previous session by:
    * Launching Firefox with a specific URL
    ** Using a desktop shortcut
    ** Using a link in an external application
    ** On the command line, typing firefox.exe "about:blank"
    ** (Possibly more ways to do it)
    * Renaming the sessionstore.js file in the profile folder
    ** On the plus side, preserves the option to restore that session later
    ** On the minus side, difficult for many users to find folders hidden by the OS, and the .js extension may be hidden by the OS
    Since the KB is a wiki, you can go in and make edits and improvements. The syntax is a bit funky, but not much worse than this forum.

  • [solved] Firefox and ed2k / aMule links

    Hi,
    I want Firefox to add ed2k links to the Transfers in aMule if I click on one.
    I opend the Firefox config (about:config) and created these two entries:
    network.protocol-handler.external.ed2k user set boolean true
    network.protocol-handler.app.ed2k user set string /usr/bin/ed2k
    but if I click on a ed2k link in Firefox I get this error:
    Firefox doesn't know how to open this address,
    because the protocol (ed2k) isn't associated with any program.
    Last edited by SiD (2007-03-19 21:31:14)

    Kern wrote:erm, shouldnt that be /usr/bin/amule not /usr/bin/ed2k    ?
    no, /usr/bin/ed2k is correct
    from ed2k man-page
    aMule ED2k link parser v1.1.0. Sends the given <ED2k_link> to aMule
    I did it like described on amule.org
    http://www.amule.org/wiki/index.php/Ed2k_links_handling
    I don't know what exactly MozEx is, but there are no MozEx Packages in the Repos and AUR.
    So I guess it's not installed on my system.
    Kern wrote:also Edit -   Preferences - Content - How BonEcho deals with etc and see if your about:config did anything
    There are no Options to set this (network.protocol-handlers) in the "Edit -> Preferences" menus...
    EDIT
    just tested it with opera and running ed2k from console and both worked.
    So the problem is that firefox seems to ignore this entry in about:config
    network.protocol-handler.external.ed2k user set boolean true
    EDIT
    now it works. don't know why, but it works.
    I just
    - deleted the two entries in about:config
    - closed Firefox
    - startetd Firefox and added the (exactly same) entries in about:config
    - closed and restarted Firefox
    Last edited by SiD (2007-03-19 21:37:54)

  • [partially solved] firefox and input boxes

    I've updated firefox to 3.5 recently, after update, I noticed that input boxes look too long.
    here's a screenshot of www.archlinux.org (pay attention to package search area)
    and here's a screenshot from google.
    I dont have any problems with midori, it renders the page fine:
    I tried changing firefox theme and gtk theme but it didnt help.
    So, any ideas about this problem?
    solved
    well, i've solved my problem by changing main font from Lucida Grande to another font.
    Last edited by ras0ir (2009-07-14 08:43:05)

    I had exactly the same problem but i didn't want to change my system font because i really like the elegance of 'Lucida Grande'.
    I tried a bit tweaking Firefox with creating userChrome.css but it didn't work for me.
    Then i installed the stylish addon and created a custom userstyle:
    * Bugfix for the firefox input fields when using 'Lucida grande' as system font
    @namespace url(http://www.w3.org/1999/xhtml);
    input {
    font-family: sans-serif !important;
    With this workaround all input fields are at the right size again. Of course 'sans-serif' shouldn't again point to 'Lucida Grande' For me it's 'DejaVu Sans'.
    Could someone help me to realize this workaround with a userChrome.css so i don't need the stylish extension anymore?
    Also this tweak applies to all 'input' fields - e.g. to buttons, too. How can i specifiy, that it should only target single-line text inputs?
    cheers
    Fat

  • (SOLVED) Firefox and Sublime calling Cervisia as file manager

    I'm using KDE 4.13
    Problem In Firefox :
    When a download is completed, it shows up in Downloads window. When I ask "open containing folder", it will display a warning:
    http://up.vbiran.ir/uploads/10587140621 … a-warn.png
    "This is not a CVS folder.
    If you did not intend to use Cervisia, you can switch view modes within Konqueror."
    and then open `Cervisia` :
    http://up.vbiran.ir/uploads/10584140621 … ivitia.png
    Problem in Sublime Text Editor :
    When I running Sublime and then `Pereferences > Browse Packages`
    (Same as Firefox)
    It will display :
    "This is not a CVS folder.
    If you did not intend to use Cervisia, you can switch view modes within Konqueror."
    and then open `Cervisia`.
    Any ideas?
    -- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --
    Last edited by kamrava (2014-07-25 07:02:14)

    basica wrote:
    xdg-mime default nautilus.desktop inode/directory
    replace nautilis with whatever the default file manager is for KDE and you should be ok.
    Solved   Tnx
    I'm using `Dolphin` and tried :
    xdg-mime default dolphin.desktop inode/directory
    Worked like a charm.

  • [SOLVED] Firefox and OpenJDK give buffer overflow

    Hello all,
    I hope I am posting this on the right forum. I am having some problems on sites with Java when opening them using Firefox 14.0.1 and the OpenJDK plugin.
    Whenever I open a site that has any kind of java (even the simple applet tutorial given on oracle website) I get a buffer overflow error. If I switch to Sun JDK (well Oracle? whatever...) everything works perfectly. Opera with OpenJDK works perfectly as well.
    This is what I get:
    *** buffer overflow detected ***: firefox terminated
    ======= Backtrace: =========
    /lib/libc.so.6(__fortify_fail+0x37)[0x7fcc895d16c7]
    /lib/libc.so.6(+0xf77a0)[0x7fcc895cf7a0]
    /usr/lib/jvm/java-7-openjdk/lib/IcedTeaPlugin.so(NP_Initialize+0x198)[0x7fcc5e1deb58]
    /usr/lib/firefox/libxul.so(+0x108b89a)[0x7fcc87ec589a]
    /usr/lib/firefox/libxul.so(+0x10778f2)[0x7fcc87eb18f2]
    /usr/lib/firefox/libxul.so(+0x108327f)[0x7fcc87ebd27f]
    /usr/lib/firefox/libxul.so(+0x1085639)[0x7fcc87ebf639]
    /usr/lib/firefox/libxul.so(+0x1085ac5)[0x7fcc87ebfac5]
    /usr/lib/firefox/libxul.so(+0x1085cf2)[0x7fcc87ebfcf2]
    /usr/lib/firefox/libxul.so(+0x10864a1)[0x7fcc87ec04a1]
    /usr/lib/firefox/libxul.so(+0xb08ee6)[0x7fcc87942ee6]
    /usr/lib/firefox/libxul.so(+0xb09165)[0x7fcc87943165]
    /usr/lib/firefox/libxul.so(+0x72cdf8)[0x7fcc87566df8]
    /usr/lib/firefox/libxul.so(+0x7226b9)[0x7fcc8755c6b9]
    /usr/lib/firefox/libxul.so(+0x71fceb)[0x7fcc87559ceb]
    /usr/lib/firefox/libxul.so(+0x1258ae3)[0x7fcc88092ae3]
    /usr/lib/firefox/libxul.so(+0x111a955)[0x7fcc87f54955]
    /usr/lib/firefox/libxul.so(+0xfe42ed)[0x7fcc87e1e2ed]
    /usr/lib/firefox/libxul.so(+0x84d64a)[0x7fcc8768764a]
    /usr/lib/firefox/libxul.so(+0x850e8d)[0x7fcc8768ae8d]
    /usr/lib/firefox/libxul.so(XRE_main+0x12d)[0x7fcc8768b120]
    firefox[0x40250b]
    /lib/libc.so.6(__libc_start_main+0xf5)[0x7fcc894f9725]
    firefox[0x406041]
    ======= Memory map: ========
    00400000-00417000 r-xp 00000000 08:05 1591079 /usr/lib/firefox/firefox
    00617000-00618000 r--p 00017000 08:05 1591079 /usr/lib/firefox/firefox
    00618000-00619000 rw-p 00018000 08:05 1591079 /usr/lib/firefox/firefox
    7fcc4e500000-7fcc4f200000 rw-p 00000000 00:00 0
    7fcc4f300000-7fcc4f600000 rw-p 00000000 00:00 0
    7fcc4f700000-7fcc4f900000 rw-p 00000000 00:00 0
    7fcc4fa00000-7fcc4fc00000 rw-p 00000000 00:00 0
    7fcc4fd00000-7fcc4fe00000 rw-p 00000000 00:00 0
    7fcc4ff00000-7fcc50000000 rw-p 00000000 00:00 0
    7fcc50100000-7fcc50200000 rw-p 00000000 00:00 0
    7fcc50300000-7fcc50600000 rw-p 00000000 00:00 0
    7fcc50700000-7fcc50c00000 rw-p 00000000 00:00 0
    7fcc50d00000-7fcc51100000 rw-p 00000000 00:00 0
    7fcc51200000-7fcc51500000 rw-p 00000000 00:00 0
    7fcc51600000-7fcc51700000 rw-p 00000000 00:00 0
    7fcc51800000-7fcc51900000 rw-p 00000000 00:00 0
    7fcc51a00000-7fcc51b00000 rw-p 00000000 00:00 0
    7fcc51bdf000-7fcc51be0000 ---p 00000000 00:00 0
    7fcc51be0000-7fcc523e0000 rw-p 00000000 00:00 0 [stack:13747]
    7fcc52500000-7fcc52600000 rw-p 00000000 00:00 0
    7fcc52700000-7fcc52800000 rw-p 00000000 00:00 0
    7fcc52900000-7fcc52a00000 rw-p 00000000 00:00 0
    7fcc52b00000-7fcc52c00000 rw-p 00000000 00:00 0
    7fcc52cfe000-7fcc52cff000 ---p 00000000 00:00 0
    7fcc52cff000-7fcc534ff000 rw-p 00000000 00:00 0 [stack:13733]
    7fcc534ff000-7fcc53500000 ---p 00000000 00:00 0
    7fcc53500000-7fcc54600000 rw-p 00000000 00:00 0 [stack:13732]
    7fcc546ac000-7fcc546ad000 ---p 00000000 00:00 0
    7fcc546ad000-7fcc54ead000 rw-p 00000000 00:00 0 [stack:13731]
    7fcc54ead000-7fcc58eae000 rw-s 00000000 00:0f 1035228 /dev/shm/pulse-shm-1172457461
    7fcc58eae000-7fcc58ec3000 r-xp 00000000 08:05 1310772 /usr/lib/libnsl-2.16.so
    7fcc58ec3000-7fcc590c2000 ---p 00015000 08:05 1310772 /usr/lib/libnsl-2.16.so
    7fcc590c2000-7fcc590c3000 r--p 00014000 08:05 1310772 /usr/lib/libnsl-2.16.so
    7fcc590c3000-7fcc590c4000 rw-p 00015000 08:05 1310772 /usr/lib/libnsl-2.16.so
    7fcc590c4000-7fcc590c6000 rw-p 00000000 00:00 0
    7fcc590c6000-7fcc59379000 r-xp 00000000 08:05 1335703 /usr/lib/libvorbisenc.so.2.0.9
    7fcc59379000-7fcc59578000 ---p 002b3000 08:05 1335703 /usr/lib/libvorbisenc.so.2.0.9
    7fcc59578000-7fcc59594000 r--p 002b2000 08:05 1335703 /usr/lib/libvorbisenc.so.2.0.9
    7fcc59594000-7fcc59595000 rw-p 002ce000 08:05 1335703 /usr/lib/libvorbisenc.so.2.0.9
    7fcc59595000-7fcc595df000 r-xp 00000000 08:05 1335711 /usr/lib/libFLAC.so.8.2.0
    7fcc595df000-7fcc597de000 ---p 0004a000 08:05 1335711 /usr/lib/libFLAC.so.8.2.0
    7fcc597de000-7fcc597e0000 rw-p 00049000 08:05 1335711 /usr/lib/libFLAC.so.8.2.0
    7fcc597e0000-7fcc597e5000 r-xp 00000000 08:05 1335668 /usr/lib/libasyncns.so.0.3.1
    7fcc597e5000-7fcc599e4000 ---p 00005000 08:05 1335668 /usr/lib/libasyncns.so.0.3.1
    7fcc599e4000-7fcc599e5000 r--p 00004000 08:05 1335668 /usr/lib/libasyncns.so.0.3.1
    7fcc599e5000-7fcc599e6000 rw-p 00005000 08:05 1335668 /usr/lib/libasyncns.so.0.3.1
    7fcc599e6000-7fcc59a45000 r-xp 00000000 08:05 1335721 /usr/lib/libsndfile.so.1.0.25
    7fcc59a45000-7fcc59c45000 ---p 0005f000 08:05 1335721 /usr/lib/libsndfile.so.1.0.25
    7fcc59c45000-7fcc59c47000 r--p 0005f000 08:05 1335721 /usr/lib/libsndfile.so.1.0.25
    7fcc59c47000-7fcc59c48000 rw-p 00061000 08:05 1335721 /usr/lib/libsndfile.so.1.0.25
    7fcc59c48000-7fcc59c4c000 rw-p 00000000 00:00 0
    7fcc59c4c000-7fcc59cab000 r-xp 00000000 08:05 1456447 /usr/lib/pulseaudio/libpulsecommon-2.1.so
    7fcc59cab000-7fcc59eab000 ---p 0005f000 08:05 1456447 /usr/lib/pulseaudio/libpulsecommon-2.1.so
    7fcc59eab000-7fcc59eac000 r--p 0005f000 08:05 1456447 /usr/lib/pulseaudio/libpulsecommon-2.1.so
    7fcc59eac000-7fcc59eae000 rw-p 00060000 08:05 1456447 /usr/lib/pulseaudio/libpulsecommon-2.1.so
    7fcc59eae000-7fcc59eb5000 r-xp 00000000 08:05 1350728 /usr/lib/libjson.so.0.0.1
    7fcc59eb5000-7fcc5a0b4000 ---p 00007000 08:05 1350728 /usr/lib/libjson.so.0.0.1
    7fcc5a0b4000-7fcc5a0b5000 r--p 00006000 08:05 1350728 /usr/lib/libjson.so.0.0.1
    7fcc5a0b5000-7fcc5a0b6000 rw-p 00007000 08:05 1350728 /usr/lib/libjson.so.0.0.1
    7fcc5a0b6000-7fcc5a0fe000 r-xp 00000000 08:05 1350892 /usr/lib/libpulse.so.0.14.3
    7fcc5a0fe000-7fcc5a2fe000 ---p 00048000 08:05 1350892 /usr/lib/libpulse.so.0.14.3
    7fcc5a2fe000-7fcc5a2ff000 r--p 00048000 08:05 1350892 /usr/lib/libpulse.so.0.14.3
    7fcc5a2ff000-7fcc5a300000 rw-p 00049000 08:05 1350892 /usr/lib/libpulse.so.0.14.3
    7fcc5a300000-7fcc5a800000 rw-p 00000000 00:00 0
    7fcc5a8ff000-7fcc5a900000 ---p 00000000 00:00 0
    7fcc5a900000-7fcc5b400000 rw-p 00000000 00:00 0 [stack:13729]
    7fcc5b44b000-7fcc5c5c4000 r-xp 00000000 08:05 1469133 /usr/lib/mozilla/plugins/libflashplayer.so
    7fcc5c5c4000-7fcc5c7c4000 ---p 01179000 08:05 1469133 /usr/lib/mozilla/plugins/libflashplayer.so
    7fcc5c7c4000-7fcc5c899000 rw-p 01179000 08:05 1469133 /usr/lib/mozilla/plugins/libflashplayer.so
    7fcc5c899000-7fcc5c9a8000 rw-p 00000000 00:00 0
    7fcc5c9a8000-7fcc5c9cd000 r-xp 00000000 08:05 1326525 /usr/lib/libjson-glib-1.0.so.0.1400.2
    7fcc5c9cd000-7fcc5cbcc000 ---p 00025000 08:05 1326525 /usr/lib/libjson-glib-1.0.so.0.1400.2
    7fcc5cbcc000-7fcc5cbcd000 r--p 00024000 08:05 1326525 /usr/lib/libjson-glib-1.0.so.0.1400.2
    7fcc5cbcd000-7fcc5cbce000 rw-p 00025000 08:05 1326525 /usr/lib/libjson-glib-1.0.so.0.1400.2
    7fcc5cc0b000-7fcc5cc0e000 r-xp 00000000 08:05 1456503 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
    7fcc5cc0e000-7fcc5ce0e000 ---p 00003000 08:05 1456503 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
    7fcc5ce0e000-7fcc5ce0f000 r--p 00003000 08:05 1456503 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
    7fcc5ce0f000-7fcc5ce10000 rw-p 00004000 08:05 1456503 /usr/lib/mozilla/plugins/libgnome-shell-browser-plugin.so
    7fcc5ce10000-7fcc5d866000 r-xp 00000000 08:05 1334749 /usr/lib/libQtGui.so.4.8.2
    7fcc5d866000-7fcc5da65000 ---p 00a56000 08:05 1334749 /usr/lib/libQtGui.so.4.8.2
    7fcc5da65000-7fcc5daa7000 r--p 00a55000 08:05 1334749 /usr/lib/libQtGui.so.4.8.2
    7fcc5daa7000-7fcc5daae000 rw-p 00a97000 08:05 1334749 /usr/lib/libQtGui.so.4.8.2
    7fcc5daae000-7fcc5dab2000 rw-p 00000000 00:00 0
    7fcc5dab2000-7fcc5dd73000 r-xp 00000000 08:05 1334737 /usr/lib/libQtCore.so.4.8.2
    7fcc5dd73000-7fcc5df73000 ---p 002c1000 08:05 1334737 /usr/lib/libQtCore.so.4.8.2
    7fcc5df73000-7fcc5df7e000 r--p 002c1000 08:05 1334737 /usr/lib/libQtCore.so.4.8.2
    7fcc5df7e000-7fcc5df7f000 rw-p 002cc000 08:05 1334737 /usr/lib/libQtCore.so.4.8.2
    7fcc5df7f000-7fcc5df80000 rw-p 00000000 00:00 0
    7fcc5dfbd000-7fcc5dfce000 r-xp 00000000 08:05 1459536 /usr/lib/mozilla/plugins/skypebuttons.so
    7fcc5dfce000-7fcc5e1ce000 ---p 00011000 08:05 1459536 /usr/lib/mozilla/plugins/skypebuttons.so
    7fcc5e1ce000-7fcc5e1cf000 r--p 00011000 08:05 1459536 /usr/lib/mozilla/plugins/skypebuttons.so
    7fcc5e1cf000-7fcc5e1d0000 rw-p 00012000 08:05 1459536 /usr/lib/mozilla/plugins/skypebuttons.so
    7fcc5e1d0000-7fcc5e1ff000 r-xp 00000000 08:05 1585363 /usr/lib/jvm/java-7-openjdk/lib/IcedTeaPlugin.so
    7fcc5e1ff000-7fcc5e3fe000 ---p 0002f000 08:05 1585363 /usr/lib/jvm/java-7-openjdk/lib/IcedTeaPlugin.so
    7fcc5e3fe000-7fcc5e400000 rw-p 0002e000 08:05 1585363 /usr/lib/jvm/java-7-openjdk/lib/IcedTeaPlugin.so
    7fcc5e5f9000-7fcc5e5ff000 r-xp 00000000 08:05 1719200 /usr/lib/libcanberra-0.28/libcanberra-pulse.so
    7fcc5e5ff000-7fcc5e7fe000 ---p 00006000 08:05 1719200 /usr/lib/libcanberra-0.28/libcanberra-pulse.so
    7fcc5e7fe000-7fcc5e7ff000 r--p 00005000 08:05 1719200 /usr/lib/libcanberra-0.28/libcanberra-pulse.so
    7fcc5e7ff000-7fcc5e800000 rw-p 00006000 08:05 1719200 /usr/lib/libcanberra-0.28/libcanberra-pulse.so
    7fcc5e800000-7fcc5e900000 rw-p 00000000 00:00 0
    7fcc5e9ff000-7fcc5ea00000 ---p 00000000 00:00 0
    7fcc5ea00000-7fcc5f600000 rw-p 00000000 00:00 0 [stack:13726]
    7fcc5f6ff000-7fcc5f700000 ---p 00000000 00:00 0
    7fcc5f700000-7fcc60200000 rw-p 00000000 00:00 0 [stack:13725]
    7fcc602ff000-7fcc60300000 ---p 00000000 00:00 0
    7fcc60300000-7fcc60d00000 rw-p 00000000 00:00 0 [stack:13724]
    7fcc60dff000-7fcc60e00000 ---p 00000000 00:00 0
    7fcc60e00000-7fcc61700000 rw-p 00000000 00:00 0 [stack:13723]
    7fcc617ff000-7fcc61800000 ---p 00000000 00:00 0
    7fcc61800000-7fcc62100000 rw-p 00000000 00:00 0 [stack:13722]
    7fcc621ff000-7fcc62200000 ---p 00000000 00:00 0
    7fcc62200000-7fcc62f00000 rw-p 00000000 00:00 0 [stack:13721]
    7fcc62fab000-7fcc62fac000 ---p 00000000 00:00 0
    7fcc62fac000-7fcc637ac000 rw-p 00000000 00:00 0 [stack:13720]
    7fcc637ac000-7fcc637b1000 r-xp 00000000 08:05 1310783 /usr/lib/libnss_dns-2.16.so
    7fcc637b1000-7fcc639b0000 ---p 00005000 08:05 1310783 /usr/lib/libnss_dns-2.16.so
    7fcc639b0000-7fcc639b1000 r--p 00004000 08:05 1310783 /usr/lib/libnss_dns-2.16.so
    7fcc639b1000-7fcc639b2000 rw-p 00005000 08:05 1310783 /usr/lib/libnss_dns-2.16.so
    7fcc639ef000-7fcc639f7000 r--p 00000000 08:06 260678 /home/stefano/.config/dconf/user
    7fcc639f7000-7fcc639f8000 r--s 00000000 08:06 684980 /home/stefano/.cache/dconf/user
    7fcc639f8000-7fcc639ff000 r-xp 00000000 08:05 1354677 /usr/lib/gio/modules/libdconfsettings.so
    7fcc639ff000-7fcc63bfe000 ---p 00007000 08:05 1354677 /usr/lib/gio/modules/libdconfsettings.so
    7fcc63bfe000-7fcc63bff000 r--p 00006000 08:05 1354677 /usr/lib/gio/modules/libdconfsettings.so
    7fcc63bff000-7fcc63c00000 rw-p 00007000 08:05 1354677 /usr/lib/gio/modules/libdconfsettings.so
    7fcc63c00000-7fcc64d00000 rw-p 00000000 00:00 0
    7fcc64dff000-7fcc64e00000 ---p 00000000 00:00 0
    7fcc64e00000-7fcc65700000 rw-p 00000000 00:00 0 [stack:13727]
    7fcc657f9000-7fcc657fa000 ---p 00000000 00:00 0
    7fcc657fa000-7fcc65ffa000 rw-p 00000000 00:00 0 [stack:13716]
    7fcc65ffa000-7fcc65ffb000 ---p 00000000 00:00 0
    7fcc65ffb000-7fcc667fb000 rw-p 00000000 00:00 0 [stack:13719]
    7fcc667fb000-7fcc667fc000 ---p 00000000 00:00 0
    7fcc667fc000-7fcc66ffc000 rw-p 00000000 00:00 0 [stack:13718]
    7fcc66ffc000-7fcc66ffe000 r-xp 00000000 08:05 1334848 /usr/lib/libXss.so.1.0.0
    7fcc66ffe000-7fcc671fe000 ---p 00002000 08:05 1334848 /usr/lib/libXss.so.1.0.0
    7fcc671fe000-7fcc671ff000 r--p 00002000 08:05 1334848 /usr/lib/libXss.so.1.0.0
    7fcc671ff000-7fcc67200000 rw-p 00003000 08:05 1334848 /usr/lib/libXss.so.1.0.0
    7fcc67200000-7fcc67300000 rw-p 00000000 00:00 0
    7fcc6730d000-7fcc6735f000 r--p 00000000 08:05 2228918 /usr/share/fonts/TTF/DejaVuSansMono.ttf
    7fcc6735f000-7fcc6739f000 rwxp 00000000 00:00 0
    7fcc673af000-7fcc673ef000 rwxp 00000000 00:00 0
    7fcc673ff000-7fcc67400000 ---p 00000000 00:00 0
    7fcc67400000-7fcc68000000 rw-p 00000000 00:00 0 [stack:13711]
    7fcc68056000-7fcc68057000 rw-p 00000000 00:00 0
    7fcc68057000-7fcc680aa000 r--p 00000000 08:05 2230287 /usr/share/fonts/TTF/DejaVuSerif-Italic.ttf
    7fcc680aa000-7fcc680fe000 r--p 00000000 08:05 2230348 /usr/share/fonts/TTF/DejaVuSerif-Bold.ttf
    7fcc680fe000-7fcc680ff000 ---p 00000000 00:00 0
    7fcc680ff000-7fcc688ff000 rw-p 00000000 00:00 0 [stack:13710]
    7fcc688ff000-7fcc68900000 ---p 00000000 00:00 0
    7fcc68900000-7fcc69400000 rw-p 00000000 00:00 0 [stack:13717]
    7fcc69404000-7fcc694c2000 r--p 00000000 08:05 2231638 /usr/share/fonts/TTF/arial.ttf
    7fcc694c2000-7fcc694e0000 r--p 00000000 08:05 2231639 /usr/share/fonts/TTF/ariblk.ttfAborted
    It's not a very big issue for me, it takes a split second to switch between OpenJDK and Sun but if I happen to forget, things go pear shaped. Anyone else having this issue? I remember something like that, if I am not mistaken, happening with Firefox 3.5 but that has been fixed long ago.
    Last edited by StefaX (2012-08-05 07:32:19)

    Bett help fixing the bug: http://mail.openjdk.java.net/pipermail/ … 19629.html
    https://bugs.archlinux.org/task/30969
    http://icedtea.classpath.org/bugzilla/s … gi?id=1106
    Last edited by AndyRTR (2012-08-03 13:02:52)

  • [Solved]Firefox 3.5 Fonts gone wrong

    Since the upgrade to 3.5 my firefox fonts have messed up. Seems to be a problem with hinting not being taken from gnome font preferences no-more.
    I updated cairo and applied the lcd patch to it myself but firefox fonts still remain the same.
    I have read ppl on ubuntu have had the same problem but the fix found there wont work with arch.
    Any ideas?
    Last edited by Andy Mack (2009-07-15 15:47:42)

    Here's another example.  I have completely stripped ~/.fonts.conf to contain only the basic settings (no exceptions, conditions, etc.):
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <match target="font">
    <edit name="antialias" mode="assign"><bool>false</bool></edit>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
    <edit name="hintstyle" mode="assign"><const>hintnone</const></edit>
    <edit name="rgba" mode="assign"><const>none</const></edit>
    </match>
    </fontconfig>
    And here's the result:
    Note that hinting is still being applied to the fonts even though it has been disabled in fontconfig.
    Applying the above rules to the system-wide /etc/fonts/conf.d location produces the exact same result.  Here's what is linked there now (and I've moved everything out of here too and it made no difference):
    $ ls -l /etc/fonts/conf.d/
    total 4
    lrwxrwxrwx 1 root root 39 2009-06-13 11:08 20-fix-globaladvance.conf -> ../conf.avail/20-fix-globaladvance.conf
    lrwxrwxrwx 1 root root 39 2009-06-13 11:08 20-unhint-small-vera.conf -> ../conf.avail/20-unhint-small-vera.conf
    lrwxrwxrwx 1 root root 42 2009-06-13 11:08 29-replace-bitmap-fonts.conf -> ../conf.avail/29-replace-bitmap-fonts.conf
    lrwxrwxrwx 1 root root 36 2009-06-13 11:08 30-metric-aliases.conf -> ../conf.avail/30-metric-aliases.conf
    lrwxrwxrwx 1 root root 33 2009-06-13 11:08 30-urw-aliases.conf -> ../conf.avail/30-urw-aliases.conf
    lrwxrwxrwx 1 root root 30 2009-06-13 11:08 40-nonlatin.conf -> ../conf.avail/40-nonlatin.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 45-latin.conf -> ../conf.avail/45-latin.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 49-sansserif.conf -> ../conf.avail/49-sansserif.conf
    lrwxrwxrwx 1 root root 26 2009-06-13 11:08 50-user.conf -> ../conf.avail/50-user.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 51-local.conf -> ../conf.avail/51-local.conf
    lrwxrwxrwx 1 root root 27 2009-06-13 11:08 60-latin.conf -> ../conf.avail/60-latin.conf
    lrwxrwxrwx 1 root root 35 2009-06-13 11:08 65-fonts-persian.conf -> ../conf.avail/65-fonts-persian.conf
    lrwxrwxrwx 1 root root 30 2009-06-13 11:08 65-nonlatin.conf -> ../conf.avail/65-nonlatin.conf
    lrwxrwxrwx 1 root root 29 2009-06-13 11:08 69-unifont.conf -> ../conf.avail/69-unifont.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 80-delicious.conf -> ../conf.avail/80-delicious.conf
    lrwxrwxrwx 1 root root 31 2009-06-13 11:08 90-synthetic.conf -> ../conf.avail/90-synthetic.conf
    -rw-r--r-- 1 root root 959 2008-07-06 15:08 README
    I run a minimal X desktop (dwm). No gnome-settings-daemon.  No font settings declared in .Xdefaults either.  I manage everything via ~/.fonts.conf and every other application looks great.
    Last edited by thayer (2009-07-08 19:37:29)

  • [solved]systemd and console font

    Hi guys. I've just switched my laptop over to systemd and so far I'm finding it great! I am, however, having a slight issue with getting it to set a console font, err, properly.
    KEYMAP=uk
    FONT=Lat2-Terminus16
    Before switching to systemd, this worked fine. However now when I boot up, the font is set early (I have the hook in mkinitcpio.conf) but once I get to the login screen, the screen flickers and I end up back on the default font. I've tried this with several of the available fonts and it happens with all of them. I don't have it set anywhere else, so I'm not sure why the font is being reset. Has anyone else come across this issue yet?
    Cheers.
    Last edited by JHeaton (2012-08-25 20:20:34)

    bohoomil wrote:Did you really rebuild the initramfs? Once it becomes a part of your boot image, it shouldn't be reset (which happens when the video driver like nouveau gets loaded: if this is the case, add your video driver to the MODULES array in /etc/mkinitcpio,conf and rebuild the image again). I have been doing the very same thing every time I prepare a new setup and it always works as expected.
    Yes, I did rebuild it. I didn't have the video driver in MODULES though; adding it has now solved the issue. Don't know why I hadn't added i915 to that array though.
    Thanks very much for your help.

  • Firefox and fraction font sizes

    Today I was experimenting with GTK font sizes, and noticed that my new least-favorite app doesn't even handle that correctly.
    Check this out:
    Exhibit A: GTK font size 7
    Exhibit B: GTK font size 7.5
    Notice how the font in Thunar's menu changed and Firefox's didn't? Through testing 7.9 as a font size I came to the conclusion that it isn't even rounding to the nearest integer, just outright ignoring the decimals.
    Is there a solution for this?

    augustob wrote:Is there a solution for this?
    Yes, but you won't like it. Crack open your UserChrome.css file (in ~/.mozilla/firefox/<garbage>.default/chrome/) and do something like this:
    .chromeclass-menubar {
    font-size: 10pt !important;
    EDIT: To set the default font size for everything (not just the menu bar), use "*" instead of ".chromeclass-menubar".

  • [SOLVED] Firefox and Java: Website broken

    Hi Archers
    I'm struggling to get my bank's website to work in Arch linux. It's been working without a hitch before, but now I can't make it work.
    The site is located at https://www.portalbank.dk/9100/.
    There should be a Java login box and if you press "hent nøgle" a 'file open' dialog should pop up. With my computer, there's just a grey box where the Java login should've been.
    I'm using the current version of both firefox (3.0.4-1) and openjdk (1.3.1-2) on both my computers. If I go to http://java.com/en/download/installed.jsp it looks as if Java should be installed correctly.
    Can any of you guys see the page and have any idea why I can't?
    I really appreciate your help.
    /Ledet
    Last edited by ledet (2008-12-03 21:50:35)

    It seems that the implementation of OpenJDK isn't all that good.
    Birger

Maybe you are looking for