要在Debian上更新Compton版本,请按照以下步骤操作:
更新APT缓存 打开终端并运行以下命令以确保APT缓存是最新的:
sudo apt update
升级Compton 使用APT包管理器升级Compton到最新版本:
sudo apt upgrade compton
重启Compton 升级完成后,重启Compton服务以应用更改:
systemctl --user restart compton
或者,如果你是手动启动的Compton,可以简单地重新运行启动命令。
如果你需要最新版本或者APT仓库中的版本不满足需求,可以从源码编译安装:
安装依赖项 首先,确保你已经安装了所有必要的构建工具和依赖项:
sudo apt install build-essential git cmake libx11-dev libxrandr-dev libxcb-xinerama0-dev libxcb-render-util0-dev
克隆Compton仓库 使用Git克隆Compton的GitHub仓库:
git clone https://github.com/astraeador/compton.git
cd compton
编译并安装 运行以下命令来编译并安装Compton:
mkdir build && cd build
cmake ..
make
sudo make install
重启Compton 编译安装完成后,重启Compton服务:
systemctl --user restart compton
或者手动启动:
compton
通过以上步骤,你应该能够在Debian上成功更新Compton到最新版本。