xwinwrap 无法在 Ubuntu 上使用 bspwm 启动

xwinwrap 无法在 Ubuntu 上使用 bspwm 启动

当我使用 xwinwrap 启动 bspwm 时,xwinwrap 不会启动。当我直接启动 xwinwrap 时,它返回错误:

xwinwrap -g 1920x1080 -ni -fs -s -st -sp -nf -ov -- gifview ~/wallpaper.gif -a

X Error of failed request:  BadMatch (invalid parameter attributes)
Major opcode of failed request:  1 (X_CreateWindow)
Serial number of failed request:  39
Current serial number in output stream:  41

即使我关闭 compton,xwinwrap 也无法启动。没有 -ov 标志,xwinwrap 就会启动。但我想在 bspwm 上制作动态壁纸,所以对我来说 -ov 是必需的。

答案1

我尝试了下一个解决方案来使 xwinwrap 正常工作:

  1. sudo apt install bspwm因为你提到了它
  2. sudo apt-get install gifsicle因为gifview: No such file or directory没有它就会出现错误
  3. 正在/home/user执行:git clone https://github.com/ujjwal96/xwinwrap.git && cd xwinwrap && make && sudo make install && make clean安装 xwinwrap
  4. 已下载gif 动画进入/home/user/xwinwrap文件夹
  5. 执行的命令:

    xwinwrap -g 1366x768 -ni -s -nf -b -un -argb -sh circle -- gifview -w WID /home/user/xwinwrap/d0ce51911d72ec558f914ace338292be.gif -a
    

我的处理器和图形性能很差,所以它严重拖累了我的笔记本电脑。

相关内容