Last active
October 31, 2015 10:38
-
-
Save dyoungwd/e703fbb650a667202675 to your computer and use it in GitHub Desktop.
Script to install steam and use system runtime instead of steam runtime
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# script to install steam and use system runtime instead of steam runtime | |
# author D4zzy [email protected] | |
DIR=$HOME/.local/share/Steam/ | |
# Install steam if not already done and start | |
# sudo dnf install steam | |
#Steam required to be started before removing steam runtime | |
#steam | |
echo "Removing libstd" | |
find $DIR -iname "libstd*" -exec rm -rf {} \; | |
echo "Removing libgcc" | |
find $DIR -iname "libgcc*" -exec rm -rf {} \; | |
echo "Job Done - Game On!!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment