From 883163843efda040496845c19befd824af21a18f Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Fri, 21 Oct 2022 18:44:53 -0400 Subject: [PATCH] Fix flatpak lutris detection --- lug-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index 81fe6a2..b29e033 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -944,7 +944,7 @@ lutris_detect() { # Detect flatpak lutris if [ -x "$(command -v flatpak)" ]; then - flatpak info lutris >/dev/null 2>&1 + flatpak info net.lutris.Lutris >/dev/null 2>&1 if [ "$?" -eq 0 ]; then lutris_installed="true" lutris_flatpak="true"