diff --git a/torbrowser_launcher/common.py b/torbrowser_launcher/common.py index e2aa39f..8d1e2f0 100644 --- a/torbrowser_launcher/common.py +++ b/torbrowser_launcher/common.py @@ -155,7 +155,7 @@ def build_paths(self, tbb_version=None): "start": tbb_local + "/tbb/" + self.architecture - + "/tor-browser/start-tor-browser.desktop", + + "/tor-browser/Browser/start-tor-browser", }, } diff --git a/torbrowser_launcher/launcher.py b/torbrowser_launcher/launcher.py index d339366..2e2e029 100644 --- a/torbrowser_launcher/launcher.py +++ b/torbrowser_launcher/launcher.py @@ -478,7 +478,8 @@ def run(self): # Run Tor Browser subprocess.call( - [self.common.paths["tbb"]["start"]], cwd=self.common.paths["tbb"]["dir_tbb"] + [self.common.paths["tbb"]["start"], "--detach"] + self.url_list, + cwd=self.common.paths["tbb"]["dir_tbb"], ) sys.exit(0)