| 31 | |
| 32 | == Font size == |
| 33 | |
| 34 | Lately, 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 | {{{ |
| 37 | Gui.DefaultFont: -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1 |
| 38 | Gui.MenuFont: -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1 |
| 39 | Gui.MenuHiFont: -*-helvetica-bold-r-*-*-18-*-*-*-*-*-iso8859-1 |
| 40 | Gui.DocFixedFont: -*-courier-*-r-*-*-18-*-*-*-*-*-iso8859-1 |
| 41 | Gui.DocPropFont: -*-helvetica-*-r-*-*-18-*-*-*-*-*-iso8859-1 |
| 42 | Gui.IconFont: -*-helvetica-*-r-*-*-16-*-*-*-*-*-iso8859-1 |
| 43 | Gui.StatusFont: -*-helvetica-*-r-*-*-16-*-*-*-*-*-iso8859-1 |
| 44 | }}} |
| 45 | |