Skip to content

Instantly share code, notes, and snippets.

@dyoungwd
Last active October 31, 2015 10:38
Show Gist options
  • Save dyoungwd/e703fbb650a667202675 to your computer and use it in GitHub Desktop.
Save dyoungwd/e703fbb650a667202675 to your computer and use it in GitHub Desktop.
Script to install steam and use system runtime instead of steam runtime
#!/bin/bash
# script to install steam and use system runtime instead of steam runtime
# author D4zzy dyoung0378@gmail.com
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