From c70450ee31642621513e8b4cec6c082ad1385be1 Mon Sep 17 00:00:00 2001 From: Techwizz Date: Wed, 20 Jul 2022 19:00:26 -0600 Subject: [PATCH] Added SteamOS support --- Winegon.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Winegon.sh b/Winegon.sh index 147f768..ffe412c 100755 --- a/Winegon.sh +++ b/Winegon.sh @@ -45,8 +45,13 @@ check_dependencies () { echo "Detected Arch Linux!" arch_install else - echo "You're on an unsupported distro. Please manually install the required dependencies from the README.md or make a pull request adding support for your distro" - exit + if [[ $(cat /etc/*-release | grep "SteamOS") ]]; then + echo "Detected SteamOS!" + arch_install + else + echo "You're on an unsupported distro. Please manually install the required dependencies from the README.md or make a pull request adding support for your distro" + exit + fi fi fi fi