blitztext-app-linux/linux/blitztext.service
mARTin-B78 e901abbfb7 Add Jules agent prompts and fix CI secret scan false positives
Creates `AGENTS.md` with shared rules and environment setup block for Jules agents.
Creates `agents/` directory containing 11 prompt files for each scheduled agent.
Creates `.jules/` directory containing 11 initial journal files for the agents.
Also updates documentation strings referencing 'sk-...' to 'your-api-key-here' to bypass false positive secret scan triggers in GitHub Actions.

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2026-06-09 20:06:19 +00:00

27 lines
814 B
Desktop File

# Blitztext user service.
# Install:
# mkdir -p ~/.config/systemd/user
# cp blitztext.service ~/.config/systemd/user/
# # edit ExecStart path below if your checkout differs
# systemctl --user daemon-reload
# systemctl --user enable --now blitztext
#
# A global-hotkey daemon needs the graphical session, hence the env below.
[Unit]
Description=Blitztext dictation daemon
After=graphical-session.target
PartOf=graphical-session.target
[Service]
Type=simple
# Adjust this path to your checkout location:
ExecStart=%h/Docker/blitztext-app/linux/.venv/bin/python -m blitztext run
Environment=DISPLAY=:1
# If you use rewrite workflows, set your key here or in the unit's environment:
# Environment=OPENAI_API_KEY=your-api-key-here
Restart=on-failure
RestartSec=3
[Install]
WantedBy=graphical-session.target