Alterar tela em dpi no Linux Mint 15?

2

Acabei de instalar o Linux Mint 15 Cinnamon em uma VM no meu MacBook Pro Retina. Tudo funciona muito bem, mas eu estou atualmente obrigado a executá-lo em 1280x800, porque senão todo o texto se torna ilegivelmente pequeno.

Existe alguma maneira de alterar o DPI da tela, de tal forma que o texto e possivelmente também os elementos da GUI sejam dimensionados para ficarem bem em resoluções maiores?

Se isso não for possível no Cinnamon, você pode recomendar outro DE que funcionará bem com telas com DPI alto? Ouvi dizer que o KDE funciona muito bem, mas se você conhece outro que não é um recurso tão grande, isso seria muito apreciado.

    
por Axim 10.10.2013 / 08:36

1 resposta

1

Fontes do sistema

Você pode aumentar as fontes. Vá para ...

Menu>System Tools>System Settings>Appearance>Fonts

.. Para alterar as fontes do sistema.

Em seguida, para alterar o tamanho da fonte do Nemo, instalei o dconf-tools e selecionei a área de trabalho org > nemo > para aumentar os tamanhos de fonte da área de trabalho.

GTK-Apps Para tornar as fontes maiores do GTK-Apps, como o GIMP, você precisa fazer alterações adicionais:

  1. Open home folder, press Ctrl+H (or click View > Show hidden files)
  2. File > click "Create new document" > Empty document

  3. Create a file named .gtkrc-2.0 (note the dot at beginning)

  4. Open file and enter this line, of course substituting your own username for "your-user-name" :) :

    include '/home/your-user-name/.gtkrc.mine'

  5. Save the file

  6. Close

  7. Create another file named .gtkrc-1.2-gnome2

  8. Open file and enter the same line:

    include '/home/your-user-name/.gtkrc.mine'

  9. Save the file

  10. Close

  11. Create this file named .gtkrc.mine

  12. Open the file
  13. Enter the following text (just replace "11" with the value of the size of text you want):

    style "gedit"
    {
    font_name = "11"
    }
    widget_class "*" style "gedit"
    gtk-font-name = "11"

  14. Save file

  15. Close

Fonte

    
por 10.10.2013 / 13:06