Redimensionando a barra lateral da unidade no Ubuntu 12.04 LTS

2

Como podemos redimensionar a barra lateral da unidade no Ubuntu 12.04 LTS?

Eu gostaria de torná-lo o menor possível.

    
por Vladimir Leiv 07.06.2013 / 09:32

1 resposta

1

Este tutorial mostra como fazer isso, link .

Existem 3 arquivos nesse diretório, /usr/share/unity-2d/shell/* . Edite esses arquivos usando sudo gedit <file> :

Shell.qml , alterar:

 # before
 width: 65

 # after
 width: 50

common/IconTile.qml , alterar:

# before
sourceSize.width: 48
sourceSize.height: 48

# after
sourceSize.width: 32
sourceSize.height: 32

launcher/LauncherList.qml , alterar:

# before
property int tileSize: 54
property int selectionOutlineSize: 65

# after
property int tileSize: 38
property int selectionOutlineSize: 50
    
por slm 07.06.2013 / 11:18