安装Compton
sudo apt update && sudo apt install compton
优化配置文件
~/.config/compton.conf
,关闭阴影、透明等特效:shadow = false
opacity = 1.0 # 完全不透明
backend = glx
vsync = true/false
限制资源占用
cpulimit
限制CPU使用率(例如50%):cpulimit -l 50 -p $(pgrep compton)
其他优化
sudo apt update && sudo apt upgrade
sudo apt install nvidia-driver # NVIDIA显卡需安装驱动
sudo apt install xfce4
重启Compton生效
killall compton && compton &