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