Use shared.home consistently

This commit is contained in:
kramo
2023-08-17 13:52:56 +02:00
parent 208eae75c1
commit 191beed12e
3 changed files with 3 additions and 3 deletions

View File

@@ -128,7 +128,7 @@ class Game(Gtk.Box):
# pylint: disable=consider-using-with
subprocess.Popen(
args,
cwd=Path.home(),
cwd=shared.home,
shell=True,
start_new_session=True,
creationflags=subprocess.CREATE_NEW_PROCESS_GROUP if os.name == "nt" else 0, # type: ignore