Also update the steam example

This commit is contained in:
Tobias 2019-03-06 16:56:20 +01:00
parent 97c9796bba
commit 7629e2812f
1 changed files with 1 additions and 1 deletions

View File

@ -34,5 +34,5 @@ sudo dnf install -y wget && wget "https://git.furworks.de/tobias/fedora-install/
``` bash
#installs wget, gets the script, makes it executable and runs it with steam and nonfree repos added for things like nvidia drivers
sudo dnf install -y wget && rm install.sh && wget "https://git.furworks.de/tobias/fedora-install/raw/branch/master/install.sh" -O install.sh && chmod +x ./install.sh && ./install.sh --nonfree --steam
sudo dnf install -y wget && wget "https://git.furworks.de/tobias/fedora-install/raw/branch/master/install.sh" -O ./install.sh && chmod +x ./install.sh && ./install.sh --nonfree --steam
```