How do I reset the font settings - actual font and size - to their default?
(I changed some values in System->Preferences->Appearance->Fonts)
This is particularly important with the new Ubuntu font in Maverick - for instance I'm interested to see what the default settings are.
Ubuntu 16.04 and after
gconftool-2
has been superseeded bygsettings
on Ubuntu 16.04+ and in other GNOME based systems.Nowadays you can simply run the following in a terminal window to reset all your desktop font settings:
In versions prior to Ubuntu 20.04 (16.04 to 19.10) also nautilus desktop font settings could be adjusted. To reset it run:
Hope it helps.
Ubuntu 15.10 and before
To reset the customization of gnome fonts done using System ⇒ Preferences ⇒ Appearance ⇒ Fonts use the following commands.
Basically these commands remove the customization by deleting the user instance of the gconf keys in which case the environment falls back to system defaults.
Though the key identifiers end with
name
(at least in the first three instances) what is stored against them is the complete font spec (like family/font name, size, style etc).Since these keys are stored inside your home directory they take effect in all ubuntu installations that share the home partition. The .gconf directory inside your home directory is where all this info is stored.
So a crude way to reset the font info could be to temporarily rename/move these files. However this should be done when the user's gnome session is not active (thus from a tty session a la Ctrl+Alt+F1).
Of course these files have other keys in the same category that have nothing to do with font properties so moving the entire file would mean that the customizations for those are also lost. The way to deal key-wise is using gconftool-2 as mentioned above.
Copy and paste gconf-watcher into a file on your PC called gconf-watcher. Chmod it to executable. Run it in Terminal and leave it running.
Change each setting in in
System
→Preferences
→Appearance
→Fonts
. Look at gconf-watcher's output to find out where it's stored in the gconf tree.Now install gconf-editor. It looks and works a bit like the Windows Registry Editor. Use it to "unset" the relevant values. Know that "unset" really means "reset".
By the way, if I may ask, why is it that you'd like to reset the settings?
To change settings on Gnome-3 you can use gsettings .
To reset all the fonts for an user, you type these commands on the user terminal :
For the scaling factor this one :
To get the current configuration for each settings replace "reset" with "get" .
You can also do it with GUI by running dconf-editor .
Though the answers are pretty upto-date and workable for GNOME3, there is one caveat and that is even when with using
gsettings reset ...
or gnome-tweak-tools' restore default button, you may not actually get the default fonts defined by the distribution. For example, Ubuntu (with Unity DE) comes with Ubuntu font as default interface font, but if you install another DE on top of this it can change this default settings.The values for default fonts actually come from gschema files in
/usr/share/glib-2.0/schemas
directory. When we install a desktop environment metapackage, it provides overrides file to change these defaults.If this kind of things happen, you need to manually revert back the default by writing a custom gschema override file.
The override files for each GNOME variants
For each cases, create an override file with this name
/usr/share/glib-2.0/schemas/99_default_font_settings.gschema.override
file and fill it with the following contentsUbuntu with Unity
Ubuntu with GNOME3
Ubuntu MATE
Once the file is saved, use this command to compile the schemas
Then any of the above methods can be used to reset to the default set by you.
Alternatively, if you've installed GNOME environment on Ubuntu, removed
ubuntu-gnome-default-settings
package to get back the ubuntu defaults. MATE's package isubuntu-mate-default-settings
. If you happen to have Ubuntu GNOME as default and installed ubuntu unity, removedubuntu-settings
package.Hope this will be helpful to some extent.
I refer to starkus here below - for this pretty window you need to install the package gnome-tweak-tools.
Then there you can set the fonts in "Schriften" resp. in "fonts".
After changed fonts-settings, then reboot again to get results system-wide.