From 2bc2f05f641bf791885009a0c810b30fe92b93bb Mon Sep 17 00:00:00 2001 From: Page Asgardius Date: Thu, 18 Jan 2024 11:40:00 -0700 Subject: [PATCH] prepare download link --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 8e2b609..8a304ab 100755 --- a/src/main.py +++ b/src/main.py @@ -47,7 +47,7 @@ class Application(Gtk.Application): terminal.spawn_sync( Vte.PtyFlags.DEFAULT, None, - ['/bin/bash', '-c', ' wget https://lily.asgardius.company/r3gamedlx64 -O '+home+'/.r3game && chmod +x '+home+'/.r3game && echo \"Game Installed\"'], + ['/bin/bash', '-c', ' wget https://lily.asgardius.company/r3gamedlx64 -O '+home+'/.asgardius.page.spacedemo && chmod +x '+home+'/.asgardius.page.spacedemo && echo \"Game Installed\"'], None, GLib.SpawnFlags.DEFAULT, ) @@ -59,7 +59,7 @@ class Application(Gtk.Application): def on_play_clicked(self, button): home = os.path.expanduser("~") - subprocess.run([home+'/.r3game']) + subprocess.run([home+'/.asgardius.page.spacedemo']) if __name__ == "__main__":