Changes between Version 4 and Version 5 of InstallingROOT


Ignore:
Timestamp:
11/07/18 16:08:48 (6 years ago)
Author:
tbretz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallingROOT

    v4 v5  
    2727}}}
    2828
     29
    2930Note that the current version of root (6.14) need RootNewMacros.cmake during compilation of derived projects which is (only) located in the source directory. Therefore, you must not remove or change the name of the source directory. I hope that will be fixed in the future.
     31
     32== Font size ==
     33
     34Lately, on modern screens, the default GUI fonts of root (10 and 12) are exceptionally small. They can be changed by adding the following lines to your `.rootrc`. As root is always using the one in your home directory additonally, it is advisable to add these lines to your global `.rootrc`.
     35
     36{{{
     37Gui.DefaultFont:            -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1
     38Gui.MenuFont:               -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1
     39Gui.MenuHiFont:             -*-helvetica-bold-r-*-*-18-*-*-*-*-*-iso8859-1
     40Gui.DocFixedFont:           -*-courier-*-r-*-*-18-*-*-*-*-*-iso8859-1
     41Gui.DocPropFont:            -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1
     42Gui.IconFont:               -*-helvetica-*-r-*-*-16-*-*-*-*-*-iso8859-1
     43Gui.StatusFont:             -*-helvetica-*-r-*-*-16-*-*-*-*-*-iso8859-1
     44}}}
     45