Squezzed Fonts and Awesome panel

Hello Archers,
Coming from Ubuntu and did a fresh arch installation on a Asus UX32VD.
My Setup looks like:
Base Installation on a Samsung830 256GB SSD, GPT, separat Efi boot 512mb, rest encrypted LVM and using just the efibootmgr entry for booting.
Installed Awesome WM and configured automatic login to virtual console and start X at Login. After that fonts and general looking where just crap. After gtk2 gtk3 engines, some themes installation and ubuntu font configuration, fonts looking smoth but somehow squeezed incl menus and the awesome panel. Btw Emacs doesnt use the gtk theme why?
Take a look pls
What settings or configs have to be investigated?
Any hints to a guide for a minimal Desktop installation without using a full DE like gnome etc?
thanks in advance

Fonts can look squeezed, i.e. vertically compressed, if the fontconfig rules are wrong. E.g.:
<!-- Stop letters varying in height -->
<match target="font">
<test name="family"><string>DokChampa</string></test>
<edit mode="assign" name="autohint"><bool>true</bool></edit>
<edit mode="assign" name="hintstyle"><const>hintslight</const></edit>
</match>

Similar Messages

  • Questions regarding xft fonts, and awesome wm

    Hi, I just tried ArchLinux yesterday and loving it!
    I use JWM, but am very interested in dwm/awesome wm. I do have some questions:
    1. On a thread in the forum, it is mentioned that dwm has no Xft support. How useful exactly is Xft? Would it impact on design work involving GIMP/Inkscape/Scribus?
    2. Does awesome have Xft support?
    3. I installed awesome, but I have no idea on what keys to use. The shortcuts are different from dwm. I tried to look for quick tutorial just to get the basics (dwm has one on their website), but seems like all documentation I found have none of that section and go straight to configuration.
    Do I actually have to configure the wm before I can use it at a very basic level?
    4. I would like to do some more comparison between wms, trying to find a good balance for me in regards of lightness and functions I need. However, I have no idea on what to use to keep track of cpu/memory usage for all the wms. What's a good way to do this?
    Thank you in advance.

    Welcome to Arch!
    1. The lack of xft support in dwm mostly just means that you won't get anti-aliased fonts in the status bar. Individual applications will still have the same font support they had before you used dwm.
    2. Awesome uses pango for font rendering, which is even better than xft.
    3. Look at the man page for default key bindings. It's more or less usable out of the box, but you will definitely want to customize it somehow.
    4. A good system monitor is htop. Install it from the repos and run it from a terminal.
    Last edited by fflarex (2009-02-23 18:44:45)

  • How to change the font and type in the front panel

    Can you tell me how to change the font and type in the front panel if i want to make it looks more beautiful.
    1110340040

    Hi there,
    You can change the font size and type as shown below:
    - Ee Lim -
    See that button on the left side of this post...
    If you feel my post is helpful, all you need is just (at most) 2 seconds to click that button, to show your appreciation. Thank you~~

  • Touch panel fonts and Graphics

    Gentlemen
          In addition to my previous issue, I would like to ask regarding touchpanel TPC-2006 fonts and graphics. See, for our client we plan to give four screens in touch panel and in one screen it is with list of alarms. So here when list box control is drag n drop into front panel its showing horizontal and vertical scroll bar perfect,but when deployed to touch panel its surprise horizontal screen bar not seen this is one issue and also all fonts are not clear and things that seen in front panel when deploy its not shown in TPC why? is there any way if so please help me
          I Have attach snap shot of it see in that in my front panel screen i hv got horizontal scroll bar, column header but in touch screen couldn't get all this. hope it will help to get better idea .
    thanks
    Attachments:
    Front panel.JPG ‏59 KB
    touch panel screen.JPG ‏21 KB

    The graphics and font rendering in the touch panel module is a known issue.
    As you have found out, the rendering of text and graphics on the TPC platform is not the same as running under Windows. The only way I have found to work around this issue is to continue to play around with the layout on the panel until you get acceptable results on the TPC.
    I had an application a couple of years ago that was deployed to the TPC-2006 platform. When all was said and done, in order to get an acceptable looking panel on the TPC-2006 the windows panel looked severely misaligned in some areas.

  • Dr. Damien's Developmen​t - The Xylophone Project X - Font Issues and Front Panel Layout

    The Show Raw Data button was made active in this installment. Doing this in a robust fashion was more involved than one might think, due to font and platform issues (remember I want to port this to a Windows Mobile device eventually). The following changes were made.
    The A frequency indicator was made active. This was an oversight from the last update.
    A front panel object, XylophoneFP.lvclass, was created to hold the front panel references and methods.
    The front panel object was used to implement the Show Raw Data button.
    The front panel object was used to compensate for font issues.
    When testing this application on Windows Vista, I noticed that the font differences between Vista and XP were annoying enough that I wanted to fix them. This will also lay the groundwork for any layout issues when porting to Windows Mobile. Usually, I create a cluster containing all my front panel references, but this time I put them into an object. Besides the usual object boilerplate, there are two methods, one to rearrange the front panel and one to show/hide the data graphs.
    Once the controls and indicators are properly arranged, showing and hiding the data graphs is simple. VI server methods are used to find the edges of the outer controls, some whitespace is added, then the front panel size is reset. Arranging the controls in the first place is much more complex. Dialog controls are used, and these controls change size based on the default font size. Font sizes can change due to user preference or when using the application in a different operating system than it was developed in. Button sizes can also change due to localization.
    This problem is difficult to solve cleanly, and the VI which does this, XylFP.lvlib:XylophoneFP.lvclass:ArrangeControls.vi, shows the problem. It relies on the actual sizes of the controls/indicators to rearrange the front panel in a hopefully pleasing fashion. Even though this is a relatively simple UI, the VI is fairly complex. It uses VI server calls to determine the current sizes of controls and then rearrange them. If you choose to do something similar, consider the following hints:
    The Bounds property of all controls is not writable. To change the size of controls, you need to find the property or properties which change the size. There may be more than one (which is why Bounds is not writable). For example, to change the size of a boolean, use the Button Size property.
    In many cases, the property you use to change the size of the control will not be the same value as the Bounds property. Using the boolean again, the Bounds of a 3D LED include the 3D effect around the LED, but the Button Size only includes the LED itself. Comparing the Bounds property to the result of a query to the property you will be setting will give you the necessary offset to convert between the two.
    Make sure you label your wires if you attempt to do things like this. Long wires are very common in this type of programming. It is difficult enough to keep track of things without the added aggravation of having the trace wires back to their source to identify them.
    A few judiciously placed type converters can eliminate many type conversion dots. This is not usually a real problem in this context, but you should get into the habit of efficient programming.
    I will be hiking through the mountains of New Mexico with the Boy Scouts for the next couple of weeks, so do not be dismayed if I do not reply to comments very quickly. However, comments and suggestions are still welcome and encouraged. I will reply when I return.
    Previous Installments
    Data Acquisition Concept
    GUI Concepts
    Specifications
    Core Architecture
    Data Acquisition and Note Analysis
    Sound Acquisition Revisited
    Sound Analysis
    Configuration Dialog
    Calibration Dialog
    Message Edited by DFGray on 06-05-2009 03:09 PM
    This account is no longer active. Contact ShadesOfGray for current posts and information.
    Attachments:
    XylophoneX.zip ‏1259 KB

    DFGray wrote:
    I put the event structure in the command loop so that events are processed synchronously.  In the past, I have run into a variety of race condition/synchronization issues when separating the event and command loops and prefer to keep them together to make the program structure simpler.
    It is simpler but you give up any multi CPU performance.  That LV is inherently parallel is one (the only) real advantage over a text based development system.  I can write good structured text that is almost as visually easy to parse as LV.  With modern syntax coloring engines, the difference in icons vs. structured text is not that great.
    But the challenge I give the traditional text coders is to keep track of many mulitple threads.  This is why dataflow is a powerful concept.  Yes it does lead to asynchronous execution but if you impose synchronicity on your code you are working against LV.  I get most first time programs where everything is in a sequence structure.  "Just to be safe".  
    Of course this is much better but  my first design goal is that any application should take advantage of a much hardware as possible, degrade gracefully on slower hardware and play nice with other running applications.  This simpler structure severely handicaps that first goal.
    In this case it is simple enough to "get away" with it since as you point out that there should not be anything that takes significant CPU time.   But that may not be true on the PDA?
    If you are going to run it on the PDA will we be discussing techniques to seamlessly use both NIDAQmx Base and NIDAQmx in the same system?  That is a real challenge.  I look forward to more of this!
    Cheers! 

  • After removing system fonts and reinstalling fonts, FireFox will not start

    After removing system fonts and reinstalling fonts, FireFox will not start! When I start FireFox the "Mozilla Crash Reporter" opens as if FF just crashed??? I don't see any records in event viewer. I am using FF v3.6.3 on a Windows 7 box. I tried uninstalling 3.6.3 and installing 3.0.18 and had the same problem!
    == This happened ==
    Every time Firefox opened
    == After a uninstalled all fonts including system fonts and then reinstalling system fonts. ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB6.4; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; AskTB5.5)

    The files with submitted crash report ids are inside the ''submitted '' directory, from the directory you found the LastCrash.txt timestamp file.
    The file names will begin with '''bp-'''
    There might be more information from the crash report, but it might just tell us you are crashing the first time Firefox tries to use a font.
    One thing I suppose you could do is select only those fonts you've got in Tools -> Options -> Content -> Fonts and Colors -> Advanced and then uncheck the '''Allow pages to use their own fonts''' option.
    See http://support.mozilla.com/en-US/kb/Options+window+-+Content+panel#Fonts_Dialog
    To be honest, I can't find anything on this Netscape Font Navigator and it sounds highly dubious.

  • How can i change the font and color in mail 5?

    how can i change the font and color in mail 5?

    Mail -> Preferences -> Fonts & Colors
    If you want to change the font and color in a message you're composing, you can right-click on the message and use the Font/Show Fonts command to bring up the Font panel (among other ways).
    Regards.

  • When you create a PostScript file you must rely on system fonts and use document fonts

    I got this error:
    "When you create a PostScript file you must rely on system fonts and use document fonts. Please go to the printer properties, "Adobe PDF Settings" page and turn OFF the option "Rely on system fonts only; do not use document fonts."
    This strikes me as bad practice. I only want to use system fonts and document fonts will muck me up.
    That being said, I could not easily find a way to fix this with Acrobat Pro XI. I opened Control Panel (Windows 8) and found the printer and mucked around in the various ways to get to change the PDF settings (there are several ways, and some of them present the choices as bold and not just regular). I found two separate switches for "Rely on system fonts only; do not use document fonts" and turned both off, BUT that did not work.
    Frustrated, I went back to FrameMaker and clicked File > Print Setup and then for the PDF printer, Printer Properties. There I found a THIRD instance of "Rely on system fonts only; do not use document fonts" that was set differently than the other two. This was the setting the error message meant. Change this one.
    Thanks for the convoluted UI, Adobe. What a pain, but there is the answer for all who follow after....

    > Windows 7 and Frame 7.2.
    This is not a supported configuration and probably does not work, due (I'm guessing) to driver API changes from XP to Win7, which would affect generating PDF and Ps output. This would affect Save-as-PDF and Print-to-Ps+Distill (unless you have a newer version of the full Acrobat product).
    As it happens, I'm going to attempt something similar: FM 7.0 on Win7 64 Pro. However, I'm going to install that old FM in "XP Mode".
    XP Mode is a 32-bit virtual machine running actual Windows XP inside Win7. It is (now maybe "was") available for Windows 7 Enterprise, Professional and Ultimate (but not Basic, Home or not-so-Premium). When XP went off support life earlier this month, Mr.Bill may have taken down the ability  to download XP Mode (or not, since some large enterprises are able to  purchase continued support for XP at some great cost). XP Mode never was supported for Win8. There are other VMs for Windows available.
    If XP Mode is still available, you also need a CPU that has hardware virtualization, which all recent 64-bit AMD processors do, but which is fused-off in many low end 64-bit Intel processors. AMD processors need a separate unobvious hot-fix patch installed before you do anything else about XP Mode.

  • Why are my fonts and font sizes completely haywire in 6.0.1?

    I have never has issues with fonts and Firefox. I upgraded to 6.0 two days ago and everything turned to Arial Narrow. Fonts were smaller, fonts are mismatched on pages and look strange. I tried changing the options and setting minimum font sizes and font faces, but when I use the back button these font faces and sizes no longer exist and I see the page in Arial Narrow again. This is so frustrating - I can't even browse the web because I can't read the darn thing.

    Check the font prefs and the various text-cnetric panels' options. this happenes when you choose to group by English name, but the font is encoded for a different region/ uses a different set of characters.
    Mylenium

  • Font and size help

    lblProvNameText = new JLabel("Provider ID");
    lblProvNameText.setMinimumSize(new Dimension(100, 15));
    lblProvNameText.setPreferredSize(new Dimension(100, 15));
    lblProvNameData = new JLabel("");
    lblProvNameData.setMinimumSize(new Dimension(100, 15));
    lblProvNameData.setPreferredSize(new Dimension(100, 15));
    lblProvNameText.setFont(new Font("Ariel",Font.PLAIN,12));
    for each component, i am setting the minimum size etc ..
    is there a way i can pass this to a method and set the font and size for labels and just call the method (should that method validate(); again or don't have to ....?
    anyhow i am repainting at end of components once..
    method addcomp()
    //add
    revalidate();

    import java.awt.*;
    import javax.swing.*;
    public class LabelDemo {
      public static void main(String[] args) {
        JLabel
          labelOne   = new JLabel("Label 1"),
          labelTwo   = new JLabel("Label 2"),
          labelThree = new JLabel("Label 3"),
          labelFour  = new JLabel("Label 4");
        JLabel[] labels = {
          labelOne, labelTwo, labelThree, labelFour
        Color[] backgroundColors = {
          Color.blue, Color.red, Color.yellow, Color.green
        Color[] foregroundColors = {
          Color.yellow, Color.cyan, Color.pink, Color.blue
        Font labelFont = new Font("lucida sans regular", Font.PLAIN, 18);
        JPanel panel = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.gridwidth = gbc.REMAINDER;
        gbc.weighty = 1.0;
        gbc.insets = new Insets(10,0,10,0);
        for(int i = 0; i < labels.length; i++) {
          labels.setOpaque(true);
    labels[i].setBackground(backgroundColors[i]);
    labels[i].setForeground(foregroundColors[i]);
    labels[i].setPreferredSize(new Dimension(120,25));
    labels[i].setFont(labelFont);
    labels[i].setHorizontalAlignment(JLabel.CENTER);
    panel.add(labels[i], gbc);
    JFrame f = new JFrame("Label Demo");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(new JScrollPane(panel));
    f.setSize(400,300);
    f.setLocation(300,400);
    f.setVisible(true);

  • Type font in Swing Panel

    Hello.
    I'm a non-Swing person, but had to develop a small Swing application, with a Text Panel. Could you help me in setting a font so that character width is the same? Such as Courier or any other suitable font.
    Thank you.

    This is only basic but its a start.Try this
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    import java.awt.event.*;
    import java.applet.*;
    public class TextPanel extends Canvas
         private Vector text;
         private ImageIcon img;
         private Font fnt;
         private Color col;
         private Dimension size;
         private int increment, starty;
         public TextPanel(Vector text)
              increment = starty = 0;
              this.text = text;
              // Set a default font and get its metrics
              fnt = new Font("Serif", Font.PLAIN, 11);
              FontMetrics fm = getFontMetrics(fnt);
              // set a default color
              col = Color.black;
              // setup the line spacing
              increment = fm.getHeight() + 5;
              starty = (increment / 2) + 5;
              size = new Dimension(0,0);
              // set the scroll area sizes
              init();
         public void setText(Vector text)
              this.text = text;
              repaint();
         public void init()
              // set the width
              size.width = 1500;
              // plus 1-5 to take into account the size of the scrollbars
              size.height = ((increment) * text.size()) + 105;
         public void addNotify()
              super.addNotify();
              init();
         // Need to be implemented for the scollbars to work
         public Dimension preferredSize() {return size;}
         public Dimension minimumSize() {return size;}
         // Allow color to be set : will cause redraw
         public void setColor(Color c)
              col = c;
              init();
              repaint();
         // Allow font to be set : will cause redraw
         public void setFont(Font f)
              fnt = f;
              FontMetrics fm = getFontMetrics(fnt);
              increment = fm.getHeight() + 5;
              starty = (increment / 2) + 5;
              init();
              repaint();
         // Loop through the vector of text and
         // draw it onto the canvas
         public void paint(Graphics g)
              g.setFont(fnt);
              g.setColor(col);
              for(int i = 0; i < text.size(); i++)
                   String s = ((String)(text.elementAt(i)));
                   g.drawString(s, 5, (i + starty) + (i * increment));
    THEN
    call it in main program using
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    import java.awt.event.*;
    import java.applet.*;
    public class TextFrame extends Frame
         private TextPanel txtPanel;
         private String text;
         public TextFrame()
              // Load text from file into Vector
              Vector text = loadFile("Unit3.cfg");
              // Create the scrolling textpanel
              txtPanel = new TextPanel(text);
              // Set a font
              txtPanel.setFont(new Font("Courier", Font.BOLD, 16));
              // Set a color
              txtPanel.setColor(Color.blue);
              // Create a scrollpane and add the textpanel
              ScrollPane s = new ScrollPane();
              s.add(txtPanel);
              add(s);
              setSize(500,500);
              show();
         ///Where text is entered
         public Vector loadFile(String filename)
              String line = new String("HELLO WORLD");
              Vector v = new Vector();
                        v.addElement(line);
                   return v;
         public static void main(String[] args)
              TextFrame tf = new TextFrame();
              tf.addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
    }

  • Is adjustment to increase font and icon size possible

    I just loaded Adobe Photoshop Elements 9 and find at startup the fonts and icons are so tiny they are nearly impossible for me to see.  Is there someway to increase the size of the screen image?

    you can increase the system's font and dpi size. Just go to Control Panel and then Display.
    There if you increase the dpi settings ,Organizer will respond accordingly. Also ,
    this is applicable just for Windows. However , on high dpi you will some layout issues ( known issue). Let me know if you  require any help.

  • Customize font and color in mail....

    When I write an email, well actually when I write anything... I use a lot of parenthesis.  It's part of my writing style.  I have Lion (will eventually get Mt. Lion) and in the mail program when I've written my emails I go back and make all the text in the parenthesis a smaller font and a gray color.  Is there a way to set up a keystroke or something so I can do this more easily?
    Thanks for any help.
    Susan

    Mail -> Preferences -> Fonts & Colors
    If you want to change the font and color in a message you're composing, you can right-click on the message and use the Font/Show Fonts command to bring up the Font panel (among other ways).
    Regards.

  • Can I sync PC fonts and Mac fonts using Creative Cloud?

    Can I sync PC fonts and Mac fonts using Creative Cloud?

    Well, you should have a dedicated sync MIDI cable. Assign Logic to transmit MTC. Tell Cubase to chase it.
    Song settings>Synchronization>MIDI
    that is where you can tell Logic to transmit MTC. When routing back to Logic you shuld not expect significant latency and there are ways to offset it. The easiest would probably tell Cubase to run a little ahead of the clock. (Offset)
    So there is the Logic settings panel Cubase has one similar, for chasing. If you use a dedicated audio interface and transfer audio digitally from PC to Mac then you would want to have then synced via word clock. I would put Logic as the master here again.
    You're Welcome,
    J

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

Maybe you are looking for

  • On Windows 7, Itunes 64-bit is playing all videos with a green overlay

    On Windows 7, Itunes 64-bit is playing all videos with a green overlay. You can see the video, but it's all green-scale (like grey-scale, only green). I've tried setting the Quicktime Direct3D options per Apple knowledge base articles, but to no avai

  • A75MA-G55 and memory Problem

    Hello i have problem with set memory to 1866. Can u help me with it? This is my configuration: Samsung 500 GB SATA II 7200 RPM, 16 MB NCQ (HD502HJ) Good Ram GY1866D364L9/2G   x2 Aerocool AEROPGSVP-450 SilentiumPC Pure Black BT-310 MSI A75MA-G55 AMD A

  • Is it possible to extend PT type Infotype like 2005?

    Hi~~~.... I wonder that I can extend PT (Time Record) type Infotype like 2005. We can extend other type infotype using ci_ structure. But PT type Infotypes have no ci_ structure. Is it possible to extend???

  • How to schedule Inforamtion broadcasting reports

    Hi Guru's Can you give me some idea, I have few reports in IB i have to schdule all these reports to run on every month 1st day. how can i do this. could you pls give me step by step instrcutions. Thanks i advance Points will be awarded

  • Render out a blend mode

    is there any way to render out a blend mode layer so when it's on normal it still looks like the blend mode with the transparency etc... I want to export some design to .png files to use in a web page, and I need the blend mode to work with out the p