A simple unofficial CLI for ProtonDB project. Let's face it, if you know about ProtonDB you must love video games and Linux and what better than an CLI for a Linux fan to check your games compatibility on Steam.
npm i protondb-cli -gprotondb-cli "Counter strike"Describe the support on Linux with ProtonDB
| Tier | Description |
|---|---|
| Platinum | Runs perfectly out of the box |
| Gold | Runs perfectly after tweaks |
| Silver | Runs with minor issues, but generally playable |
| Bronze | Runs, but often crashes or has issues preventing from playing comfortably |
| Borked | Either won't start or is crucially unplayable |
| N/A | Wihtout Tier. Comunity haven't report this game yet |
Describe the support of the community under the tier
docker pull jegj/protondb-cli
docker run -it --rm jegj/protondb-cli fifaBy adding the following code to your terminal (for example ~/.zshrc), you can use it pretty easy.
protondb() {
if [ -z "$1" ]; then
echo "Usage: protondb <game_name>"
return 1
fi
docker pull jegj/protondb-cli
docker run -it --rm jegj/protondb-cli "$1"
}You can also use the following command, to add it automatically into the rc file of your current shell (zsh or bash only).
rc="$HOME/.bashrc"; [ -n "$ZSH_VERSION" ] && rc="$HOME/.zshrc"; grep -q '^protondb()' "$rc" 2>/dev/null && echo "protondb function already exists in $rc – nothing to do." || { printf '\nprotondb() {\n if [ -z "$1" ]; then\n echo "Usage: protondb <game_name>"\n return 1\n fi\n docker pull jegj/protondb-cli\n docker run -it --rm jegj/protondb-cli "$1"\n}\n' >> "$rc" && echo "protondb function has been installed in $rc"; }