采用fcitx加搜狗拼音或google拼音安装好后输入中文的时候会出现大大的黑色框,且没有待选字。这个是lubuntu的一个bug,解决方法很简单。
	
	安装compton
	sudo apt-get install compton
	
	在~/里面新建.compton.conf文件,在其中添加如下内容:
	shadow = true;            # Enabled client-side shadows on windows.
	no-dock-shadow = true;        # Avoid drawing shadows on dock/panel windows.
	no-dnd-shadow = true;        # Don't draw shadows on DND windows.
	clear-shadow = true;        # Zero the part of the shadow's mask behind the
	
	在系统自启动加入该项目,在~/.config/lxsession/Lubuntu的autostart内添加如下内容:
	@compton -b &
	
	重新启动系统即可解决问题。
	
	chrome的tab页面乱码(解决乱码fcitx却无法输入中文):http://www.linuxdiyf.com/linux/11093.html
Ubuntu 15.04输入法换将:FCITX上场IBUS隐退:http://www.linuxdiyf.com/linux/11648.html
ubuntu15.04解决wps不能调用fcitx的搜狗拼音问题:http://www.linuxdiyf.com/linux/11968.html
Ubuntu中安装Fcitx中文输入法:http://www.linuxdiyf.com/linux/11213.html
在Linux Mint下安装fcitx输入法后无法调出的解决:http://www.linuxdiyf.com/linux/9863.html

