设置自定义字体问题

设置自定义字体问题

目前,我正在将 FreeSans 设置为我的 Ubuntu 安装中的标准字体。但它在三个地方保持 ubuntu 风格:Unity 仪表板中的类别标题、注销、关机等视图中的文本以及登录管理器中的用户名、密码等(窗口标题以外的所有内容)。

我忘了什么?

谢谢

答案1

Ctrl+ Alt+T

  1. 更改目录:

    cd /etc/lightdm
    
  2. 对当前配置进行备份:

    sudo cp unity-greeter.conf unity-greeter.conf.bak 
    
  3. 编辑unity-greeter配置文件:

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

    或者

    sudo nano /etc/lightdm/unity-greeter.conf
    
  4. 您可能会在那里看到:

    #
    # 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
    

有一次我在 Launchpad 上看到一个 bug,大概是“Unity Greeter 字体没有改变”,然而人们普遍使用它。更改属性font-name=Ubuntu 11看起来类似:

font-name=FreeSans 11

保存您的配置文件。

#try restart LightDM
sudo service lightdm restart

然后注销,或者重新启动所有(有时需要):

sudo reboot

享受。

看看这个问题
与编辑器结果相同dconf

dconf Unity 欢迎界面

相关内容