18 lines
319 B
Bash
Executable File
18 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# archypr:summary=Remove Steam and all of its game libraries, configs, and caches.
|
|
# archypr:requires-sudo=true
|
|
|
|
set -e
|
|
|
|
archypr-kg-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."
|