答案1
375 和 378 驱动程序中存在此问题...
鉴于只需终止 compiz 进程即可解决边框问题,我已经测试了一种解决方案,该解决方案每次在系统唤醒后都可以在我的 Ubuntu 16.04 系统上运行。
步骤1:
fixbadborders
我在目录中创建了一个名为的脚本/lib/systemd/system-sleep
。它包含以下内容:
#!/bin/sh
## This file (or a link to it) must be in the folder /lib/systemd/system-sleep/
## Purpose: Kill compiz after system wakes up from sleep.
## This will fix bad window borders caused by Nvidia driver 375.39.
kill $(ps -C compiz -o pid=)
第2步:
允许脚本具有执行权限:
sudo chmod +x fixbadborders
要删除此脚本:
sudo rm /lib/systemd/system-sleep/fixbadborders