about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/qtile/fix-restart.patch
blob: eca4f0866342f2b35d70d6ea91698cdbe03bba03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/libqtile/core/lifecycle.py b/libqtile/core/lifecycle.py
index 0d4d119d..c37d1799 100644
--- a/libqtile/core/lifecycle.py
+++ b/libqtile/core/lifecycle.py
@@ -25,7 +25,7 @@ class LifeCycle:
 
     def _atexit(self) -> None:
         if self.behavior is Behavior.RESTART:
-            argv = [sys.executable] + sys.argv
+            argv = sys.argv
             if "--no-spawn" not in argv:
                 argv.append("--no-spawn")
             argv = [s for s in argv if not s.startswith("--with-state")]
@@ -33,7 +33,7 @@ class LifeCycle:
                 argv.append("--with-state=" + self.state_file)
             logger.warning("Restarting Qtile with os.execv(...)")
             # No other code will execute after the following line does
-            os.execv(sys.executable, argv)
+            os.execv(sys.argv[0], argv)
         elif self.behavior is Behavior.TERMINATE:
             logger.warning("Qtile will now terminate")
         elif self.behavior is Behavior.NONE: