Suavizar fontes no terminal do Gentoo no Awesome WM?

3

Eu tinha o GNOME DE, mas recentemente mudei para o Awesome WM.
O único problema que tenho é que não consigo definir fontes suaves no terminal Gnome.
Se eu iniciar o gnome-settings-daemon, todas as fontes no terminal se tornarão suaves, mas é possível fazê-lo funcionar sem o gnome-settings-daemon?
Eu mudaria o terminal se em outras fontes lisas fosse.

Meu ~ / .fonts.conf

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>

<!-- Give all fonts light hinting and subpixel smoothing -->
<!--
<match target="font">
    <edit mode="assign" name="rgba">
        <const>rgb</const>
    </edit>
    <edit mode="assign" name="hinting">
        <bool>true</bool>
    </edit>
    <edit mode="assign" name="hintstyle">
        <const>hintslight</const>
    </edit>
    <edit mode="assign" name="antialias">
        <bool>true</bool>
    </edit>
</match>
-->

<!--
     <match target="font">
        <test qual="all" name="rgba"><const>unknown</const></test>
           <edit name="rgba" mode="assign"><const>rgb</const></edit>
     </match>
-->

<!--  Do not smooth Fixedsys  -->
<match target="font">
    <test name="family">
        <string>FixedsysTTF</string>
    </test>
    <edit name="antialias">
        <bool>false</bool>
    </edit>
</match>

<!--  Do not smooth Tahoma 8pt and under  -->
<match target="font">
    <test name="family">
        <string>Tahoma</string>
    </test>
    <test compare="less" name="size" qual="any">
        <double>9</double>
    </test>
    <edit name="antialias">
        <bool>false</bool>
    </edit>
</match>

<!--  Do not smooth Times New Roman or Courier New for 12pt and under  -->
<match target="font">
    <test name="family">
        <string>Times New Roman</string>
    </test>
    <test compare="less" name="size" qual="any">
        <double>13</double>
    </test>
    <edit name="antialias">
        <bool>false</bool>
    </edit>
</match>

<match target="font">
    <test name="family">
        <string>Courier</string>
        <string>Courier New</string>
        <string>Courier 10 Pitch</string>
    </test>
    <test compare="less" name="size" qual="any">
        <double>11</double>
    </test>
    <edit name="antialias">
        <bool>false</bool>
    </edit>
</match>

<!-- Do not autohint Courier New, Fixedsys, Tahoma, or Times New Roman -->
<match target="font">
    <test name="family">
        <string>Courier New</string>
        <string>Times New Roman</string>
        <string>Tahoma</string>
        <string>FixedsysTTF</string>
    </test>
    <edit mode="assign" name="hintstyle">
        <const>hintslight</const>
    </edit>
    <edit mode="assign" name="autohint">
        <bool>false</bool>
    </edit>
</match>

<match target="pattern">
            <test qual="any" name="family">
                    <string>Bitstream Vera Sans</string>
            </test>
            <edit name="family" mode="assign">
                    <string>Arial</string>
            </edit>
</match>
    <match target="pattern">
            <test qual="any" name="family">
                    <string>Helvetica</string>
            </test>
            <edit name="family" mode="assign">
                    <string>Arial</string>
            </edit>
</match>
<match target="pattern">
            <test qual="any" name="family">
                    <string>Palatino</string>
            </test>
            <edit name="family" mode="assign">
                    <string>Georgia</string>
            </edit>
</match>
</fontconfig>

~ / .gtkrc-2.0

include "/usr/share/themes/Human/gtk-2.0/gtkrc" gtk-can-change-accels = 1

gtk-theme-name = "Human" gtk-icon-theme-name = "Human" gtk-font-name = "Ubuntu 12"

gtk-xft-antialias = 1 gtk-xft-hinting
= 1 gtk-xft-hintstyle = "hintslight" gtk-xft-rgba = "rgb"

~ / .Xresorces

Xft.dpi: 96.0
Xft.hinting: true
Xft.hintstyle: hintslight
Xft.antialias: true
Xft.rgba: none
    
por gennad 20.04.2011 / 09:54

2 respostas

1

Desculpe se isso soa irrelevante, mas você pode mudar para um terminal diferente (digamos, aquele que vem com o XFCE). A razão pela qual eu sugiro isso é porque, AFAIK, o gnome-terminal somente recebe suas configurações do gnome-settings-daemon.

Outra forma de corrigi-lo pode ser executar xsettingsd: link

É supostamente um substituto para o daemon gnome-settings-daemon. Eu estou rodando, mas como eu realmente não executo muitos aplicativos GNOME, eu não posso dizer com certeza que ele realmente funciona (na maioria das vezes, eu o configurei uma vez há muito tempo e, já que não usar tantos recursos, eu simplesmente deixo isso em paz).

    
por 25.05.2011 / 17:55
1

Você pode instalar strace e executar strance gnome-settings-daemon .

Verifique a saída e encontre o que o gnome-settings-daemon está fazendo para alterar as fontes, crie um pequeno subconjunto delas em outra linguagem de programação. FEITO!

    
por 01.06.2011 / 05:16