atichu a écritSous Unity 2D. Tu ne peux pas changé la taille des icones..C'est un des problémes/inconvéniant de unity 2D
Oui, c'est faisable pour le launcher.
Modifier :
/usr/share/unity-2d/shell/Shell.qml ligne 89
width: 65
pour avoir
width: 50
Modifier :
/usr/share/unity-2d/shell/common/IconTile.qml lignes 71,72
sourceSize.width: 48
sourceSize.height: 48
pour avoir :
sourceSize.width: 32
sourceSize.height: 32
Modifier :
/usr/share/unity-2d/shell/launcher/LauncherList.qml lignes 31
property int tileSize: 54
pour avoir :
property int tileSize: 38
et toujours dans le même fichier à la ligne 35
property int selectionOutlineSize: 65
pour avoir :
property int selectionOutlineSize: 50
Source :
http://ubuntuforums.org/showthread.php?t=1943423