autostart: launch the currently-running copy (source vs installed)

_exec_command now detects whether Blitztext is running from a source checkout
(not /opt or site-packages) and, if so, writes an autostart entry that launches
that exact source with PYTHONPATH — so the "Launch on login" toggle no longer
reverts to a stale installed .deb when developing from source.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
mARTin-B78 2026-06-06 14:50:56 +02:00
parent 8e1419e828
commit 36b00935c7

View File

@ -16,7 +16,18 @@ _ENTRY = _AUTOSTART_DIR / "blitztext.desktop"
def _exec_command() -> str: def _exec_command() -> str:
"""Prefer an installed `blitztext` launcher; else run this venv's module.""" """Launch the *currently running* copy on login.
If we're running from a source checkout (not the installed /opt copy or a
site-packages install), launch that exact source with PYTHONPATH so edits
stay live. Otherwise prefer the installed `blitztext` launcher.
"""
import blitztext
pkg_parent = str(Path(blitztext.__file__).resolve().parent.parent)
from_source = not pkg_parent.startswith("/opt/") and "site-packages" not in pkg_parent
if from_source:
return f"env PYTHONPATH={pkg_parent} {sys.executable} -m blitztext tray"
launcher = shutil.which("blitztext") launcher = shutil.which("blitztext")
if launcher: if launcher:
return f"{launcher} tray" return f"{launcher} tray"