2015 的版本用了几年之后残影就特别严重,不知道 2019 的版本是不是也是这种情况? 还有灰斑的问题,还是没解决吧。。
另外附上我一个定时脚本切换 dark-mode, 用于防止菜单栏残影:
定时任务
*/20 * * * * ~/.local/bin/dark.sh
脚本内容
#!/usr/bin/env bash
osascript -e '
tell application id "com.apple.systemevents"
tell appearance preferences
if dark mode is true then
set dark mode to false
else
set dark mode to true
end if
end tell
end tell
'