Definindo problemas de fonte personalizados

0

Atualmente, estou trabalhando na configuração do FreeSans como a fonte padrão na minha instalação do Ubuntu. Mas ele permanece no Ubuntu em três lugares: os cabeçalhos de categoria no traço do Unity, o texto no logout, o encerramento etc. e o nome do usuário, senha etc. (tudo exceto o título da janela) no gerenciador de login.

O que eu esqueci?

Obrigado

    
por Florent Anders 28.12.2014 / 20:46

1 resposta

0

Ctrl + Alt + T

  1. Alterar diretório:

    cd /etc/lightdm
    
  2. Faça backup para a configuração atual:

    sudo cp unity-greeter.conf unity-greeter.conf.bak 
    
  3. Edite o arquivo de configuração unity-greeter :

    gksu gedit /etc/lightdm/unity-greeter.conf
    

    OR

    sudo nano /etc/lightdm/unity-greeter.conf
    
  4. Você verá presumivelmente:

    #
    # background = Background file to use, either an image path or a color (e.g. #772953)
    # logo = Logo file to use
    # theme-name = GTK+ theme to use
    # font-name = Font to use
    # xft-antialias = Whether to antialias Xft fonts (true or false)
    # xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
    # xft-hintstyle = What degree of hinting to use (hintnone, hintslight, hintmedium, or hintfull)
    # xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
    #
    [greeter]
    background=/usr/share/backgrounds/warty-final-ubuntu.png
    logo=/usr/share/unity-greeter/logo.png
    theme-name=Ambiance
    icon-theme-name=ubuntu-mono-dark
    font-name=Ubuntu 11
    xft-antialias=true
    xft-dpi=96
    xft-hintstyle=hintslight
    xft-rgba=rgb
    

Uma vez que eu vi algum bug no Launchpad, perto de "Unity Greeter font não muda", no entanto as pessoas comuns usam amplamente. Altere a propriedade font-name=Ubuntu 11 parecida:

font-name=FreeSans 11

Salve seu arquivo de configuração.

#try restart LightDM
sudo service lightdm restart

E efetue logout ou reinicie tudo (às vezes é necessário):

sudo reboot

Aproveite.

veja esta questão
resultado igual com o editor dconf :

    
por swift 08.01.2015 / 11:18