Add TTYReset=yes and TTYVHangup=yes so systemd restores the terminal to a clean state before handing tty1 to getty. Without this the screen went black with no cursor after the status display finished. Also remove DefaultDependencies=no which was too aggressive. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
329 B
Desktop File
19 lines
329 B
Desktop File
[Unit]
|
|
Description=Bee: boot status display
|
|
After=systemd-user-sessions.service
|
|
Before=getty@tty1.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=no
|
|
ExecStart=/usr/local/bin/bee-boot-status
|
|
TTYPath=/dev/tty1
|
|
StandardInput=tty
|
|
StandardOutput=tty
|
|
StandardError=tty
|
|
TTYReset=yes
|
|
TTYVHangup=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|