And*_*rew 8 icons application-switcher
有什么方法可以减小按 ALT+TAB 时显示的默认 Ubuntu 13.04 窗口切换器图标的大小?例如,更改 Compiz 设置(使用文本编辑器,如果不在 CCSM GUI 中)或安装不同的窗口切换器。谢谢你的帮助,祝你有美好的一天。
Rom*_*uet 10
As far as I know...the size of the default "Switcher View (Alt+Tab)" is hardcoded in the Unity source.
You can try to edit the source code to change the size according to your needs.
1) Make sure you have enable the Source code repository.

Open a Terminal window Ctrl+Alt+T and type:
sudo apt-get update2) In the Terminal type the following to install the necessary packages.
sudo apt-get install build-essential python-windowmocker quilt3) Install build dependencies.
sudo apt-get build-dep unity4) Create a folder to download the source code.
mkdir ~/Downloads/src
cd ~/Downloads/src
5) Download the source code & Export variables.
apt-get source unity
export QUILT_PATCHES=debian/patches
export EDITOR=gedit
6) Create the patch and Edit the source code.
cd unity-7.0.0daily13.06.19~13.04/
quilt new 99-custon-switcher-size.patch
quilt edit launcher/SwitcherView.cpp
Edit the lines... 46 to 50.

I changed them from:
, border_size(50)
, flat_spacing(20)
, icon_size(128)
, minimum_spacing(10)
, tile_size(150)
Run Code Online (Sandbox Code Playgroud)
To:
, border_size(25)
, flat_spacing(10)
, icon_size(64)
, minimum_spacing(10)
, tile_size(75)
Run Code Online (Sandbox Code Playgroud)
7) Build the deb packages.
quilt refreshfakeroot dpkg-buildpackage8)安装 deb 包。
cd ..
sudo dpkg -i *deb
9)最后,您可以重新启动机器以查看更改。
前:

后:

希望这可以帮助。