python/steamsync: Misc

master
Taeyeon Mori 1 year ago
parent 10057f1114
commit 79a50b5c4d
  1. 5
      README.md
  2. 4
      lib/python/steamsync.py

@ -60,6 +60,8 @@ Contains utility applications I'd hate to miss
- videothumb : Create (PSP compatible) thumbnails for video files.
- visualsleep : Sleep command with countdown timer.
- xconv : A simple, profile-based, batch-enabled "frontend" to ffmpeg.
- sync_savegames : My personal implementation of steamsync
- protontool : Tool for inspecting Steam and Proton's local state
###### Broken
- mpr : Control and listen to mpd stream at the same time.
@ -96,6 +98,9 @@ Contains support libraries
- vdfparser.py : A simple parser for Valve's VDF Key/Value format
- xconv/ : Supporting library for xconv media conversion utility
- profiles/ : (Virtual) package containing xconv profiles
- propex.py : Some utility property descriptor classes
- steamutil.py : Library for working with Steam's local state/cache files
- steamsync.py : Library for easily building custom savegame synchronization. See bin/sync_savegames
.files/git

@ -350,7 +350,9 @@ class AbstractCommonPaths:
return buf.value
return self._path_factory(get_my_documents())
class Wine(Common[P]):
class Wine(WindowsCommon[P]):
is_native_windows: bool = False
is_wine: bool = True
_wine_prefix: Path
def __init__(self, *, prefix, **kwds):

Loading…
Cancel
Save