之前,我尝试迁移到 Wayland,结果发现我使用的应用程序支持不足。我知道对 Chromium 和 Google Chrome 的 Wayland 的支持是通过称为“臭氧补丁套装”。有什么方法可以确定我的 Chrome 版本是否有此补丁集?
答案1
2022 年 4 月更新:
Wayland 支持已完全纳入其中,现已推出默认启用在官方 Chrome 二进制文件及其开源 chromium 版本中。从 Chrome/Chromium 98 开始,该--enable-features=UseOzonePlatform
选项需要替换为--ozone-platform-hint=auto
.您可以使用WAYLAND_DISPLAY
字符串来检查 Wayland 支持,例如
strings `which chromium` | grep WAYLAND_DISPLAY
旧答案(v98 之前)
如果此命令返回某些内容,您的 chromium 必须原生支持 Wayland:
strings `which chromium` | grep UseOzonePlatform
(它只适用于真正的 chrome 二进制文件,不适用于运行 chromium 的脚本)。
在这种情况下,您可以尝试这样运行:
chromium --enable-features=UseOzonePlatform --ozone-platform=wayland
德班
Debianchromium
是一个包装真实 bin 的脚本。在 Debian 上你会想要使用
strings /usr/lib/chromium/chromium | grep UseOzonePlatform