From f2d706343487867fff5c2eacc64dde2c0372cc47 Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Mon, 30 Nov 2020 14:52:34 -0600 Subject: [PATCH] Chromium v87 includes ozone by default, so switching to the repo's version, and enabling it properly with this shortcut --- bin/chrome | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/chrome b/bin/chrome index 3253e12..3f3fc75 100755 --- a/bin/chrome +++ b/bin/chrome @@ -1,5 +1,5 @@ #!/usr/bin/env bash -static_args=('--ozone-platform=wayland') +static_args=('--enable-features=UseOzonePlatform' '--ozone-platform=wayland') chromium "${static_args[@]}" "$@"