24

I installed Oneiric on a clean system, and found that the font tab is gone from the Appearance settings. This is a problem, because by default the text in Ubuntu is too large.

I changed the text from normal to small in the Universal Access settings, but then it was way too small.

I also tried it this way, but it doesn't appear to have any effect.

How can I get back the fine control and change my DPI from 96 to 90?

6 Answers6

22

Gnome Tweak Tool

This is a common issue on the forums - the move to gnome3 has dumped many of the customisation features that were available in gnome2.

One GUI tool that exists in Software Center is gnome-tweak-tool - its a partial solution to allow you to customise some aspects of fonts.

The "Text scaling factor" is the option you are interested in - its unfortunate that it is a sliding bar so you will not be able to enter the actual DPI value. Click on the sliding bar and use the left/right arrow keys to decrease/increase the font size. enter image description here

dconf-editor

Using dconf-editor which is available in the dconf-tools package allows you to set the "Text Scaling Factor" numerically i.e. changing the default value by fractions of numbers (1.2, 0.9 etc) changes the overall screen font size:

enter image description here

Universal Access

If you just want to adjust the text size universally without need detail you can do this from the universal access tool:

enter image description here

Jorge Castro
  • 71,754
fossfreedom
  • 172,746
8

If the key text-scaling-factor is missing from gconf-editor, check alternatively:

 gsettings list-schemas | grep org.gnome.desktop.interface
 gsettings list-keys org.gnome.desktop.interface
 gsettings get org.gnome.desktop.interface text-scaling-factor
 gsettings set org.gnome.desktop.interface text-scaling-factor 0.9

(replace 0.9 with the desired value).

7

Just open gconf-editor Install gconf-editor, navigate to the key /desktop/gnome/font_rendering/dpi and adjust to values you need.

enter image description here

Takkat
  • 142,284
  • 2
    gconf-editor is applicable to gnome shell only. If you want to change DPI for unity shell, use dconf-editor . (It comes with dconf-tools) The procedure is same as detailed above. – AIB Oct 14 '11 at 13:35
2

Did you try setting DisplaySize in xorg.conf?

I added to /usr/share/X11/xorg.conf.d a file with the size in mm, let's see how it works:

Section "Monitor"
  Identifier "myMonitor"
  DisplaySize 223 125
EndSection
Zanna
  • 70,465
piotr5
  • 88
  • 1
  • 8
1

There is a new option Scale for menu and title bars in System Settings > Displays in Ubuntu 14.04 as described in this Ask Ubuntu answer, to set system-wide scaling factor.

Zanna
  • 70,465
user294881
  • 31
  • 1
  • 5
0

On Pop!_ OS (which also uses GNOME shell) I had to set scale to 200% for HiDPI to work. This may be equivalent on other systems. I've got a 24 inch monitor set to 3840x2160 and it system wide font-rendering was blurry (not HiDPI or Retina like) unless scale was 200%.

Zanna
  • 70,465
urubuz
  • 101