diff --git a/NonSteamLaunchers.sh b/NonSteamLaunchers.sh index 403b4c7..6b39cb4 100755 --- a/NonSteamLaunchers.sh +++ b/NonSteamLaunchers.sh @@ -66,7 +66,7 @@ for arg in "${args[@]}"; do # Check if the user wants to install Chrome if $installchrome; then # Check if Google Chrome is already installed - if command -v google-chrome &> /dev/null; then + if flatpak list | grep com.google.Chrome &> /dev/null; then echo "Google Chrome is already installed" flatpak --user override --filesystem=/run/udev:ro com.google.Chrome else @@ -81,7 +81,6 @@ if $installchrome; then fi fi - if [ "${deckyplugin}" = false ]; then #Download Modules # Define the repository and the folders to clone @@ -2189,7 +2188,7 @@ if [[ $options == *"Netflix"* ]] || [[ $options == *"Fortnite"* ]] || [[ $option echo "User selected one of the options" # Check if Google Chrome is already installed - if command -v google-chrome &> /dev/null; then + if flatpak list | grep com.google.Chrome &> /dev/null; then echo "Google Chrome is already installed" flatpak --user override --filesystem=/run/udev:ro com.google.Chrome else @@ -2197,13 +2196,14 @@ if [[ $options == *"Netflix"* ]] || [[ $options == *"Fortnite"* ]] || [[ $option flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo # Install Google Chrome - flatpak install flathub com.google.Chrome + flatpak install flathub com.google.Chrome -y # Run the flatpak --user override command flatpak --user override --filesystem=/run/udev:ro com.google.Chrome fi fi + # wait for Google Chrome to finish wait