在Linux系统中配置Compton以支持多显示器,可以按照以下步骤进行:
首先,确保你的系统是最新的,并且已经安装了必要的依赖项。
sudo yum update -ysudo yum install -y compton
Compton的配置文件通常位于/.config/compton.conf
。你可以手动创建这个文件,或者使用默认配置并进行修改。
mkdir -p /.config/compton.conf
以下是一个基本的Compton配置示例,适用于多显示器设置:
backend "glx" ;
shadow-exclude [ ".*" , "[class'.*Firefox']" , "[title'.*Firefox']" ] ;
alpha-mode "none" ;
alpha-ignores [ ".*" , "[class'.*Firefox']" , "[title'.*Firefox']" ] ;
glx-no-stencil true ;
glx-copy-from-front true ;
shader-file null ;
shader-frag null ;
shader-vert null ;
xrandr-args "" ;
确保你的显示器已经通过xrandr
正确配置。你可以使用以下命令查看当前的显示器配置:
xrandr --query
假设你有三个显示器,分别是HDMI-1
,DP-1
,和eDP-1
,你可以使用以下命令将它们配置为扩展模式:
xrandr --output HDMI-1 --auto --right-of eDP-1
xrandr --output DP-1 --auto --right-of HDMI-1
你可以通过以下命令启动Compton:
compton -c /.config/compton.conf
为了确保Compton在系统启动时自动运行,你可以创建一个systemd
服务。
sudo nano /etc/systemd/system/compton.service
添加以下内容到服务文件:
[Unit]
Description=Compton Compositor
After=display-manager.service
[Service]
ExecStart=/usr/bin/compton -c /.config/compton.conf
Restart=on-failure
[Install]
WantedBy=multi-user.target
启用并启动服务:
sudo systemctl enable compton.service
sudo systemctl start compton.service
确保Compton正在运行并且多显示器配置正确。你可以通过以下命令检查Compton的状态:
systemctl status compton.service
如果一切正常,你应该能够看到Compton正在运行,并且你的多显示器设置应该已经生效。
请注意,具体设置步骤可能因Compton版本和显卡驱动程序而异。如需更详细的说明,请参考Compton官方文档或支持页面。