Files
blomarchy/bin/blob-remove-gaming-steam

18 lines
311 B
Bash
Executable File

#!/bin/bash
# blob:summary=Remove Steam and all of its game libraries, configs, and caches.
# blob:requires-sudo=true
set -e
blob-pkg-drop steam
rm -rf \
"$HOME/.steam" \
"$HOME/.local/share/Steam" \
"$HOME/.config/steam" \
"$HOME/.cache/steam"
echo ""
echo "Steam and its data have been removed."