i3-Gaps | 安装后无法工作

i3-Gaps | 安装后无法工作

我最近在我的 Ubuntu 16.04 机器上安装了 i3-gaps。以前,我一直在运行 i3。现在,当我尝试选择 i3 登录时,屏幕会闪烁几次,然后我又回到了默认登录屏幕。如何启动 i3-gaps?

我没有更改显示管理器并且仍然可以启动 Unity。

我的 i3 日志文件的内容

i3: error while loading shared libraries: libxcb-xrm.so.0: cannot open shared object file: No such file or directory

答案1

好像你还没有安装libxcb-xrm它是从源包构建的xcb-util-xrm。在 Ubuntu 16.4 中,你必须安装xcb-实用程序-xrm来源

cd /path/where/you/want/the/repository

# clone the repository
git clone https://www.github.com/Airblader/i3 i3-gaps
cd i3-gaps

# compile & install
autoreconf --force --install
rm -rf build/
mkdir -p build && cd build/

../configure --prefix=/usr --sysconfdir=/etc
make
sudo make install

相关内容