Je veux changer la police dans l'écran de connexion - où est la configuration pour cela?
Vous pouvez essayer la méthode mentionnée ici: https://askubuntu.com/a/22406 . Cette commande se plaindra "Aucun protocole spécifié" mais devrait fonctionner (omettre le point d'exclamation à la fin de la commande). Bien que cela ne change que la police du panneau supérieur dans greeter.
Vous pouvez également obtenir la liste des autres paramètres pouvant être ajustés avec cette méthode:
Sudo -u lightdm dbus-launch gsettings list-keys com.canonical.unity-greeter
Si vous souhaitez personnaliser votre gestionnaire d’affichage, lightdm n’est peut-être pas le choix idéal. Je le remplacerais par mdm (fonctionnalité, outils de configuration graphique, etc.), ce qui est un peu plus lourd, mais vous ne remarquerez aucune différence si ce n'est qu'il fonctionne sur un ordinateur portable de 12 ans. Les instructions pour le faire peuvent être trouvées ici: Comment remplacer LightDM par MDM?
Commencez par ouvrir un terminal, commencez à taper "terminal" dans votre tiret d'unité pour voir l'option ou appuyez sur ctrl + alt + t
Permet d'aller au bon répertoire:
cd /etc/lightdm
Maintenant, faisons une sauvegarde du fichier avant d’apporter des modifications:
Sudo cp unity-greeter.conf unity-greeter.conf.bak
Maintenant, nous devons ouvrir ce fichier et voir ce qui a changé, tapez/copiez ceci:
gksu gedit /etc/lightdm/unity-greeter.conf
Le fichier devrait ressembler à ce qui suit:
#
# 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
Puis enregistrez et déconnectez-vous.