根据需求定制Linux Compton配置可按以下步骤操作:
安装Compton:
sudo apt install compton
sudo dnf install compton
sudo pacman -S compton
创建/编辑配置文件:
~/.config/compton.conf
(若不存在则手动创建)。backend = "glx"
(推荐,支持GPU加速)或"x11"
。shadow = true/false
,shadow-exclude = ["*.menu", "*.notification"]
(排除特定窗口阴影)。opacity = 0.8
(全局透明度),opacity-rule = ["CLASS = 'Firefox', opacity = 0.7"]
(按窗口类设置透明度)。vsync = true
(启用垂直同步),glx-no-stencil = true
(禁用模板缓冲区,提升性能)。fade = true
(启用淡入淡出),unredir-if-possible = true
(避免重定向非必要窗口)。保存并重启Compton:
pkill compton && compton -c ~/.config/compton.conf &
。验证配置:
compton --log-level debug
查看日志排查。可选:使用图形化工具(如compton-config
)简化配置流程。
参考来源: