Added SteamOS support

This commit is contained in:
Paul Black 2022-07-20 19:00:26 -06:00
parent 1b55347dff
commit c70450ee31

View file

@ -45,8 +45,13 @@ check_dependencies () {
echo "Detected Arch Linux!" echo "Detected Arch Linux!"
arch_install arch_install
else 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" if [[ $(cat /etc/*-release | grep "SteamOS") ]]; then
exit 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 fi
fi fi