Fonts in KDE vs X fonts available to xfontsel

I am not KDE expert, I always liked Window Maker. Now I can't run it, so I am trying to work with KDE and use its toys - like "konsole".
After kdebase upgrade I can't configure konsole to satisfy my needs.
In the font selection I can choose only from 6 fonts:
- Andale Mono
- Bitstream Vera Sans Mono
- Courier New
- Monospace
- Sans Serif
- Serif
Only two fonts (Andale and Courier) have correct encoding (iso-8859-2).
Both looks very bad in terminal, it's not possible to work that way for long time.
When I run "xfontsel" I have much more fonts to choose. For example helvetica or fixed - and they have correct -2 encoding.
What kind of fonts are used in KDE konsole? How to change them? Where to configure it? What should I install to have more fonts there? I have all *fonts* from pacman installed.
PS. xorg7 if that matters

Jacek Poplawski wrote:
I am not KDE expert, I always liked Window Maker. Now I can't run it, so I am trying to work with KDE and use its toys - like "konsole".
After kdebase upgrade I can't configure konsole to satisfy my needs.
In the font selection I can choose only from 6 fonts:
- Andale Mono
- Bitstream Vera Sans Mono
- Courier New
- Monospace
- Sans Serif
- Serif
from fonts you have listed only Sans Serif and Serif used to have good encoding for us Polish users, but as for now it seems to be broken (dunno why, just stopped working after one of updates) and as for now I use windows fonts (these work - eg. Tahoma is just fine for kde), apart from this try using unicode fonts. For the terminal I use font named "clean", but to enable it you have to link /etc/fonts/conf.d/10-bitmap.conf to yes-bitmaps.conf
for testing purpose
"żźćńąśłóę"

Similar Messages

  • KDE *3.5* fonts from withing XFCE

    Hi there;
    I am using XFCE, with Openbox as a window manager, up until KDE4.1 came along (to the repos) I have managed changing fonts of KDE apps using 'kcontrol', now it is no longer available.
    KDE's 'systemsettings' can change the KDE 4.1 apps fonts nicely, but it doesnt change the fonts of KDE3.5 apps
    I have tried both /usr/bin/qtconfig and /opt/qt/bin/qtconfig and they do not affect font settings as well.
    Any clues?

    I'm currently running a few standalone kde packages and don't have kcontrol to double check firsthand, but i grabbed this off a kde wiki:
    wiki wrote:
    How can I get sounds notifications working in KDE without aRts:
    in KControl -> Sound & System Notification -> Sound System -> disable arts (uncheck Enable Sound System). Then go to KControl -> Sound & System Notification -> System Notifications -> More Options -> Player Settings (click on it) -> Use external player (check that) open the dialog, choose the player you like for example /usr/bin/ogg123 or aplay.

  • Kde vs i3wm font rendering

    Hi all,
    I am migrating from KDE to i3wm. I see a huge difference in the rendering of the fonts between kde font rendering and i3wm font rendering.
    I would like to know how I can get i3wm to render fonts correctly.

    litemotiv wrote:
    KDE overrides font rendering rules through it's preferences panel (System Settings > Appearance > Fonts), this should be a matter of finding out what tweaks you have made there and apply them to fontconfig manually.
    Everything you need to know about font configuration should be available in the wiki. If you have questions about specific details it is fine to ask them here, but something like "how I can get i3wm to render fonts correctly" will only solicit generic responses obviously.
    Start here: https://wiki.archlinux.org/index.php/Font_Configuration
    Tip: many people prefer Infinality for their advanced font tweaking needs.
    I noticed that KDE changes ~/.fonts.conf contents based on the changes made in 'system settings'. Since this file (even though deprecated) is used by fontconfig, it should cause the same rendering in other WMs as well.

  • XP Pro Windowsw/Fonts has a font.  It is listed as available in MS Word.  It is not listed as available in Adobe Illustrator CS6.  How do I fix this?  Thanks.

    XP Pro Windowsw/Fonts has a font.  It is listed as available in MS Word.  It is not listed as available in Adobe Illustrator CS6.  How do I fix this?  Thanks.

    BobbyH5280.  Very helpful answer!  I am XP for the next week on CS6.  I did find 3 items that helped.  The fonts are in AI, but are listed on the bottom of the list.  Also in Edit/Preferences/Type, checking "Show Font Names in English" makes the font list easier to read (doesn't appear to change the sort order though), and (with your suggestion) checking "Sow Asian Options" might do something positive.  Thanks to all of you who sent in tips.

  • Crummy looking fonts in KDE

    I'm new to Arch and finally got XFree up and running. However, the fonts on KDE look terrible and out of proportion. Tried changing all my fonts in the configuration menus to Times, which I know to be fairly clean in Windows but I still get funny looking fonts that strain my eyes. Any help for a newbie on where to go with this problem would be greatly appreciated, thanks. I also have a flat panel monitor.
    JSkier

    I've had my share of troubles with fonts, but after lots of hard work, I realized that there are ways to solve problems.  I'd like to say first off that I agree fully with the bytecode interpreter being enabled.  I also agree that the msttcorefonts should be installed, along with the bitstream vera fonts.
    However, most people get discouraged, because the Bitstream Vera fonts look awesome antialiased, and the corefonts look awesome not antialiased.  But I have yet to see a GUI that lets you configure which font families are antialiased and which ones are not.  So I played with fonts.conf a bit, and to my delight, I came up with something that works for me and should work for most.
    Put this in your ~/.fonts.conf :
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <dir>~/.fonts</dir>
    <match target="font" >
    <edit mode="assign" name="antialias" >
    <bool>true</bool>
    </edit>
    </match>
    <match target="font" >
    <test compare="eq" name="family" qual="any" >
    <string>Arial</string>
    <string>Arial Black</string>
    <string>Comic Sans MS</string>
    <string>Courier New</string>
    <string>Georgia</string>
    <string>Tahoma</string>
    <string>Times New Roman</string>
    <string>Trebuchet MS</string>
    <string>Verdana</string>
    <string>Webdings</string>
    </test>
    <test compare="less" name="size" qual="any" >
    <double>16</double>
    </test>
    <edit mode="assign" name="antialias" >
    <bool>false</bool>
    </edit>
    </match>
    <match target="font" >
    <test compare="eq" name="family" qual="any" >
    <string>Arial</string>
    <string>Arial Black</string>
    <string>Comic Sans MS</string>
    <string>Courier New</string>
    <string>Georgia</string>
    <string>Tahoma</string>
    <string>Times New Roman</string>
    <string>Trebuchet MS</string>
    <string>Verdana</string>
    <string>Webdings</string>
    </test>
    <test compare="less" name="pixelsize" qual="any" >
    <double>18</double>
    </test>
    <edit mode="assign" name="antialias" >
    <bool>false</bool>
    </edit>
    </match>
    </fontconfig>
    Basically this sets all fonts antialiased, but excludes the Microsoft corefonts.  I have left Impact antialiased because I feel it looks better that way.  But that can be changed at your discretion.
    I hope this helps someone!

  • Fonts in KDE 3.2

    I just installed AL 0.6 and the fonts in KDE are not being anti-aliased.
    Could this have something to do with a missing xft package?
    I already have the freetype module enabled in my xf86config.
    Where am i going wrong?

    [damir@Asteraceae /]$ more /etc/fonts/local.conf
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- /etc/fonts.conf file to configure system font access -->
    <fontconfig>
    <match target="font">
    <edit name="antialias" mode="assign"><bool>true</bool></edit>
    <edit name="hinting" mode="assign"><bool>false</bool></edit>
    </match>
    <match target="pattern">
    <edit name="dpi" mode="assign"><double>132</double></edit>
    </match>
    <!-- Dongs -->
    <alias>
    <family>serif</family>
    <prefer>
    <family>Bitstream Vera Serif</family>
    </prefer>
    </alias>
    <alias>
    <family>sans-serif</family>
    <prefer>
    <family>Bitstream Vera Sans</family>
    </prefer>
    </alias>
    <alias>
    <family>monospace</family>
    <prefer>
    <family>Bitstream Vera Sans Mono</family>
    </prefer>
    </alias>
    <dir>/usr/local/share/fonts</dir>
    <dir>/usr/share/fonts</dir>
    <dir>/usr/X11R6/lib/X11/fonts</dir>
    </fontconfig>
    [damir@Asteraceae /]$
    do you have something like this?

  • [SOLVED] Fat fonts in KDE

    Hi everyone,
    I'm using the ubuntu patched packages from AUR and my fonts look great on GTK apps but they look fat (bold) in KDE/Qt apps. I recall this happened too with the infinality packages so I'm sure it must be some configuration option, maybe some leftover from all the font things I've tried and messed with to get the fonts how I wanted.
    I want my fonts in KDE apps to look like the GTK ones as in the screenshot attached. Any ideas what might be the problem?
    GTK
    KDE
    Here's my /etc/fonts/fonts.conf ~/.fonts.conf in case it helps.
    Thanks.
    Last edited by mjn (2011-06-06 19:33:16)

    mjn wrote:I'm using the ubuntu patched packages from AUR...
    Which ones?
    I've got installed cairo-ubuntu fontconfig-ubuntu freetype2-ubuntu libxft-ubuntu and keep installed an old version of ubuntu fonts. My configuration looks exactly the same as yours, so, according to this (read the comments), you could try changing the hinting style from slight to medium in system settings/fonts/configure anti-aliasing. It will overwrite your ~/.fonts.conf, so do a backup copy before
    Or, better, if your ttf-ubuntu-font-family version is 0.71.2-1, downgrade it to 0.70.1, the third comment from the top will instruct you on how to do that.
    If it doesn't work, could you please post the directory listing of /etc/fonts/conf.d ?

  • HT2509 I have installed a font from the internet into Font Book and saved it in my Fonts folder under my user library. How can I make it available in Word to type a document?

    I have installed a font from the internet into Font Book and saved it in my Fonts folder under my user library. How can I make it available in Word to type a document?

    Font Management in OS X

  • Fonts shown as installed by Font Book not available to applications

    I have several fonts that Font Book shows as installed that are not available to any of my applications, including Word and Quark Express. These fonts include Arial Bold, Arial Bold Italic, and Arial Italic, all of which I believe were installed as part of OS 10.4, along with several other fonts in the Arial family that are available to my applications. How can I get all my installed fonts to be available to my applications?
    John Link

    HI John,
    Try deleting the FontBook pref file: com.apple.fontbook.plist
    /Users/YourName/Library/Preferences. Drag the .plist file from your Preferences folder to the Trash, empty the Trash and reboot. Launch Word or QE and see if those fonts are available now.
    Validating fonts
    If fonts are not displayed as expected when you open documents or you cannot open documents, it's possible fonts have been corrupted. You can validate fonts to confirm they are still safe to use, and remove any corrupted fonts you find.
    Take care not to remove system fonts, located in /System/Library/Fonts; removing system fonts could cause some applications to quit unexpectedly.
    To validate fonts:
    Open Font Book and select one or more installed fonts to check.
    Choose File > Validate Font.
    In the Font Validation window, review the fonts listed for warnings or errors. Use the pop-up menu to display warnings and errors separately, if necessary.
    For fonts with warnings or errors, click the disclosure triangle next to the font to see which validation rules show errors.
    To remove a corrupted font, click the checkbox next to the font. Make sure fonts you want to keep are not checked. Then click the Remove Checked button.
    You can also use the Console utility to troubleshoot problems with installed fonts. In the console.log window, type "font" or a font name (such as "Arial") in the Filter field to find font-related log messages.
    You can validate font files before installing the fonts. To do so, in Font Book choose File > Validate Files. Browse to and select a font file to validate and click Open. Font Book displays the Font Validation window and indicates whether it found problems with the font.
    Carolyn

  • Kde konsole messes fonts - gnome-terminal looks ok. Reason?

    I have strange situation - after some upgrade couple of days ago fonts in KDE konsole broke. To make it more specific - standard fonts look more or less ok, but when I use my national characters (like ąćęłńśóźż) they all look broken - like from another font, or badly scaled.
    The same problem doesn't exist in gnome-terminal.
    I usually use Terminus font, so I used this for demonstration, but it shows in other fonts as well - if that will be necessary I will provide list.
    Konsole shot:
    gnome-terminal shot:
    As for my settings:
    =$ cat /etc/X11/xorg.conf
    Section "Device"
    Identifier "Builtin Default intel Device 0"
    Driver "intel"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Screen"
    Identifier "Builtin Default intel Screen 0"
    Device "Builtin Default intel Device 0"
    Monitor "Monitor0"
    EndSection
    Section "InputDevice"
    Identifier "touchpad"
    Driver "synaptics"
    Option "CorePointer"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default intel Screen 0"
    InputDevice "touchpad"
    EndSection
    =$ xdpyinfo | grep -E resolution\|dimensions
    dimensions: 1680x1050 pixels (444x277 millimeters)
    resolution: 96x96 dots per inch
    I tried forcing DPI in system settings (to 120), or adding monitor size to xorg.conf - so far nothing helped.
    Any idea on what should I do to make it work sanely again?

    I've got the same problem. It looks like KDE does not read all characters for Terminus font, or reads in only one encoding. If you go to System settings -> Font installer, you see that terminus has very few characters there, and does not have special national characters.
    However, I've no idea how this can be solved. I'd guess it's some bug in KDE, but on the other hand downgrading KDE to previous version does not help at all.
    Any ideas?

  • Fonts in KDE always look worse than in GTK for me

    Hello, here's a screen shot, compare the fonts of the GTK window with the fonts in the KDE window and judge for yourself:
    http://xs127.xs.to/xs127/08225/fonts733.png
    I have no specific KDE font configuration enabled, have no ~/fonts.conf either... Why don't fonts look the same in GTK and KDE?
    Please post hints/opinions...
    Last edited by bughunter2 (2008-05-30 20:44:11)

    Try using this in your /etc/fonts/local.conf
    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <!-- the cathectic LCD tweaks, from linuxquestions.org,
    http://www.linuxquestions.org/questions/showthread.php?postid=1361098#post1361098 -->
    <fontconfig>
    <!-- Disable sub-pixel rendering.
    X detects it anyway, and if you set this as well, it just looks really horrible -->
    <match target="font" >
    <edit mode="assign" name="rgba" >
    <const>none</const>
    </edit>
    </match>
    <match target="font" >
    <edit mode="assign" name="hinting">
    <bool>true</bool>
    </edit>
    </match>
    <match target="font" >
    <edit mode="assign" name="hintstyle">
    <const>hintfull</const>
    </edit>
    </match>
    <!-- The first part of the 'magic.'
    This makes the fonts start to look nice,
    but some of the shapes will be distorted, so hinting is needed still -->
    <match target="font" >
    <edit mode="assign" name="antialias">
    <bool>true</bool>
    </edit>
    </match>
    <!-- Autohinter is not turned on automatically.
    Only disable this if you have recompiled Freetype with the bytecode interpreter,
    which is run automatically.<br /> -->
    <match target="pattern" >
    <edit mode="assign" name="autohint">
    <bool>true</bool>
    </edit>
    </match>
    <match target="font">
    <test name="weight" compare="more">
    <const>medium</const>
    </test>
    <edit name="autohint" mode="assign">
    <bool>false</bool>
    </edit>
    </match>
    <!-- Helvetica is a non true type font, and will look bad.
    This replaces it with whatever is the default sans-serif font -->
    <match target="pattern" name="family" >
    <test name="family" qual="any" >
    <string>Helvetica</string>
    </test>
    <edit mode="assign" name="family" >
    <string>sans-serif</string>
    </edit>
    </match>
    <dir>~/.fonts</dir>
    </fontconfig>

  • While editing a scanned pdf, Acrobat will not recognize the current font & change to very different font. How can I choose the font I want to match the current document?

    While editing a scanned pdf, Acrobat will not recognize the current font & change to very different font. How can I choose the font I want to match the current document?

     Thanks for answering. The version is XI.0.10. I just did the update yesterday hoping that I could now properly edit a scanned pdf document. Yes, it's happening on most all scanned documents. I followed your steps & found the list of fonts used in the document & then attempted to edit. The same occurs. When I type in a correction, I get an error alert... "the original font (in this case Fd 5805) is not available or can't be used in editing. Acrobat is using the font Minion Pro in its place." 
    When I select the text & right click as you suggested, my only choices are cut, copy, delete or select all, no "edit text".
    I have no other options to choose another font. Thanks for any help you can direct my way. 
    Debbie
          From: sukritd15 <[email protected]>
    To: Deborah Karr <[email protected]>
    Sent: Friday, February 13, 2015 5:35 AM
    Subject:  While editing a scanned pdf, Acrobat will not recognize the current font & change to very different font. How can I choose the font I want to match the current document?
    While editing a scanned pdf, Acrobat will not recognize the current font & change to very different font. How can I choose the font I want to match the current document?
    created by sukritd15 in Creating, Editing & Exporting PDFs - View the full discussionHi Deborah , I would like to know couple of things before I assist you further.1.Which version of Acrobat are you using ?2.Is it happening for all the scanned PDF' or any particular PDF? You can try these steps,Launch the scanned PDF >right click >Document Properties(from the drop down list) >Fonts(on the dialog box)>From here you will get the fonts used in that PDF . While editing the PDF ,select the text that are editing or typing in with the help of selection tool .After you select the text ,right click on the text and choose "edit text" from the drop down list .From there you will be able to choose the desired font . RegardsSukrit Dhingra If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7190881#7190881 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7190881#7190881 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Creating, Editing & Exporting PDFs by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Font Book won't remove font files

    I've been doing some testing with Font Book in hopes to replace Suitcase for font management. I've been testing on OS X 10.4.5 with Font Book 2.0.2.
    I have FB prefs setup with User as the default install location. Getting fonts installed works fine. To simplify for testing I'm just using one source folder with one family of fonts in it. So I drag the source folder into the FB window where I have created a collection called Temp.
    The font files are copied into ~/Library/Fonts, just as they should be, and are now available to the system. When I select the font family in FB and choose Remove Font, it disappears from FB, however the font files remain in ~/Library/Fonts.
    According to all documentation I've read, that is not the expected behavior. When Remove Fonts is used within FB, the font files should be moved to the trash.
    In addition, since the font files are being left in ~/Library/Fonts, if I try to add the same source folder back into FB, nothing happens, they just simply do not load. If I manually remove the lingering fonts from ~/Library/Fonts I am then able to add the source folder again.
    So it appears that FB is not functioning as advertised. I've confirmed this on two separate machines running 10.4.5 and also with one running 10.3.9.
    Any ideas what's up or am I missing something here?

    "When I select the font family in FB and choose Remove Font, it disappears from FB, however the font files remain in ~/Library/Fonts.
    Where are you selecting the font, from within the "All Fonts" collection, or within the "Temp" collection? If you've selected it from within your Temp collection, "Remove" only removes the font from the collection, not from your installed fonts. To remove the fonts from your installed fonts, you need to select them from within the All Fonts collection.
    I think what you might want to do rather than create a collection is to create an actual "Temporary" font library. In Font Book, select the All Fonts collection so that the focus is in the leftmost column and choose "New Library" from the action menu. Name it "Temporary" (or whatever else you'd like) and then hit enter. Notice it's listed above the dividing line which separates libraries on the top with collections on the bottom. Now, drag your folder of fonts from the Finder onto the "Temporary" library icon in Font Book. NOTE: A reference to the fonts will be added to Font Book; the fonts themselves are not copied but remain where they are in the Finder and are activated or deactivated from there. Now, whether you select the fonts from within the All Fonts library or the Temporary library, the "Remove" command will remove the fonts from Font Book. (Since the fonts remained in their original location, when they're removed from Font Book they're not moved to the Trash; rather, the reference to them is simply removed from Font Book).
    Hope this helps....
    Dual 2.7 GHz PowerPC G5 w/ 2.5 GB RAM   Mac OS X (10.4.6)  

  • InDesign CS6 - fonts problems (Document fonts fight with system installed fonts, "font incomplete")

    hello
    First, Indesign function to automatically open fonts from "Document fonts" folder is fantastic, quasy font manager. BUT, fonts is available ONLY for THAT indesign document, no other application can use it, even from CS6 suite. This is probably the most stupid decision about how this function must work. IDEALLY, fonts will be available for ALL application inside CS package until indd doc is closed. If I need some font for editing links in photoshop, illustrator I need to install them. This workflow have wrong concept.
    We now have problem, sorry Indesign have problem. Example, I need type1 font mt-symbol for mathtype AND for Indesign. This font is installed in c:\windows\fonts folder. Everything work fine. When I make package from Indesign and reopen indesign indd document inside package, Indesign report that mt-symbol IS INCOMPLETE. WHY, BECAUSE CONCURENT FONTS from both C:\windows\fonts folder AND FROM "Document fonts" folder. If I rename "Document fonts" folder, Indesign open font only from system and everything work properly.
    THIS IS BIG PROBLEM, fonts circles around workflow/folders and always will be duplicates in "document fonts" and system\fonts folder because different application need same fonts.
    Any solution?

    Another problem with the Document Fonts folder that we just noticed: in CS5, you could place Windows Type 1 fonts (.pfm and .pfb) into the Document Fonts folder on a Mac and InDesign would activate them.
    This no longer works in CS6. (Bug report filed.)
    Huge bummer, as this was a great timesaver and workaround in a high-production prepress environment when working with old Windows files. Hopefully this was not an intentional change and will be restored in a later bugfix release, or at worst in CS7.

  • Why do my TrueType fonts (from CS5 Contents/Goodies/Fonts folder) look awful?

    I recently installed the fonts that ship with CS5 Web Premium. These are located in Content dvd in the Goodies>Fonts folder. the Open Type fonts look fine but all True Type fonts are pixelated...like the font isn't really there?  Can anyone advise? 

    Actually those fonts do ship with some versions of the Creative Suite. They are absolutely not for any print-oriented production. And yes, they look like that.
    Actually, Adobe has produced a number of TrueType fonts. There are a series of "web pro" TrueType fonts produced over the years and still available. See http://store1.adobe.com/cfusion/store/html/index.cfm?store=OLS-US&event=displayFontPackage &code=1507.
              - Dov

Maybe you are looking for

  • Why is the iPad 2 not recognizing my video from my camera?

    have an iPad 2, camera connection kit, Canon T3i. I am trying to transfer video to the iPad 2 via the connection kit and an SDHC from SanDisk, why does it not play? It xfer's the pictures and they show up but all the video file says is MOV in grey?

  • Cluster and proxy

              I understand that if I use in-memory state replication, I need to have a proxy server in front of my WLS cluster. If I don't need to maintain state do I still need to have a           separate proxy? Currently, we plan to have two WLS serve

  • Adding dynamic split column width to my report

    I'm trying to add a dynamic split-column-width to my report in BI Publisher. I do not have a need for a column header. I tried to add this line to my existing line of code for the cell. *<?split-column-width:COLUMN_DATA?>* C *<?split-column-width:COL

  • Is there a Mountain Lion driver for HP Deskjet 5740?

    I've been to the HP support site; they make it look as if they have a Deskjet 5740 driver for Mountain Lion, but when I get to the page where I'm supposed to be able to choose a download, I'm caught in this loop with "choose your connection" and an F

  • Just beginning, may not have sufficient rights

    Yesterday I installed NetWeaver Developer Studio for the first time and it required that it be installed as a user with Local Administrator rights on the PC.  I used a special user to do this, but now my normal user cannot run the program.  My networ