mirror of
https://github.com/kuhyx/diet-guard.git
synced 2026-07-04 10:23:37 +02:00
Rewrites python_pkg.diet_guard imports to diet_guard, vendors the shared as_float coercion helper, drops the monorepo PYTHONPATH from install.sh and the systemd unit (package is now pip-installed), and scaffolds standalone lint/test config matching testsAndMisc's real enforced bar (pylint --fail-under=10 with tests excluded and the use-implicit-booleaness/consider-using-with disables, mypy's actual disabled-error-code set, ruff ALL, bandit, 100% branch coverage).
26 lines
1.3 KiB
Desktop File
26 lines
1.3 KiB
Desktop File
[Unit]
|
|
Description=Diet Guard log-to-unlock gate (periodic check)
|
|
After=graphical-session.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
# DISPLAY mirrors wake-alarm.service: the gate opens a Tk window when a lock
|
|
# is due, so without DISPLAY it would crash with "no display name and no
|
|
# $DISPLAY" before it could even check. The command self-checks gate_is_due()
|
|
# and exits 0 when no lock is needed, so running it every ~30 min is cheap.
|
|
# No PYTHONPATH needed: diet_guard is pip-installed (see install.sh / README),
|
|
# so /usr/bin/python finds it via user site-packages.
|
|
#
|
|
# XAUTHORITY pins the X auth cookie path explicitly. It is belt-and-suspenders,
|
|
# not the fix: when this unit fires at SESSION START (Persistent=true catch-up),
|
|
# it can beat the display manager writing ~/.Xauthority, so the cookie is simply
|
|
# absent yet -- pointing at it does not help. That race is handled in Python by
|
|
# wait_for_display(), which polls the display until it is connectable before
|
|
# opening the window (previously a session-start launch died on a "couldn't
|
|
# connect to display" TclError and never showed). The sleep gives the session a
|
|
# brief head start; the Python wait is what makes it reliable.
|
|
Environment=DISPLAY=:0
|
|
Environment=XAUTHORITY=%h/.Xauthority
|
|
ExecStartPre=/bin/sleep 1
|
|
ExecStart=/usr/bin/python -m diet_guard gate
|