mirror of
https://github.com/kuhyx/steam-backlog-enforcer.git
synced 2026-07-04 13:23:18 +02:00
8 lines
251 B
Bash
8 lines
251 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Quick launcher for the "done" workflow:
|
||
|
|
# check completion → open HLTB → pick next game → uninstall & hide others
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/../.."
|
||
|
|
exec python -m python_pkg.steam_backlog_enforcer.main "done"
|