Update readme.md

This commit is contained in:
LunaChocken
2025-06-07 17:36:50 +01:00
parent 9431eef1a3
commit 1eb5b3891a
3 changed files with 8 additions and 6 deletions
+3 -3
View File
@@ -20,9 +20,6 @@ class SteamGamePathTool:
self.steam_vdf = vd.parse_vdf(self.steam_vdf_path)
self.steam_library_locations = vd.find_extra_locations(self.steam_vdf)
for library in self.steam_library_locations:
print(f"[+] Found Steam library at: {library}")
games = vd.fetchall_vdfs(self.steam_vdf)
games = self.sort_games(games)
@@ -30,6 +27,9 @@ class SteamGamePathTool:
game_rend = [Panel(self.get_game_content(game), expand=True) for game in games]
console.print(Columns(game_rend))
for library in self.steam_library_locations:
print(f"[+] Found Steam library at: {library}")
self.prompter = PromptHelper(games)
while True:
self.prompt_user()