From 70c98bc45b2460b1f8fcad767e4302ac9e8acc54 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Tue, 1 Jul 2025 11:21:23 +0300 Subject: [PATCH] google-chrome: add flatpak --- bash/usr-local-bin/google-chrome | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash/usr-local-bin/google-chrome b/bash/usr-local-bin/google-chrome index 8805d9e..7d1d9e7 100755 --- a/bash/usr-local-bin/google-chrome +++ b/bash/usr-local-bin/google-chrome @@ -8,6 +8,8 @@ elif [[ -d "$HOME/.config/google-chrome-beta" && -d "$HOME/.cache/google-chrome- /usr/bin/google-chrome-beta --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@" elif hash google-chrome-stable 2> /dev/null; then /usr/bin/google-chrome-stable --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@" +elif hash com.google.Chrome 2> /dev/null; then + com.google.Chrome --ozone-platform=wayland --disk-cache-dir='/dev/null' --enable-features=WaylandWindowDecorations "$@" else chromiuma "$@" fi