Replace 15s blocking wait with instant Chromium launch showing a dark loading page that polls /healthz every 500ms and auto-redirects to the app when ready. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
455 B
Bash
Executable File
21 lines
455 B
Bash
Executable File
#!/bin/sh
|
|
# openbox session: launch tint2 taskbar + chromium, then openbox as WM.
|
|
# This file is used as an xinitrc by bee-desktop.
|
|
|
|
# Disable screensaver and DPMS
|
|
xset s off
|
|
xset -dpms
|
|
xset s noblank
|
|
|
|
tint2 &
|
|
chromium \
|
|
--disable-infobars \
|
|
--disable-translate \
|
|
--no-first-run \
|
|
--disable-session-crashed-bubble \
|
|
--disable-features=TranslateUI \
|
|
--start-fullscreen \
|
|
file:///usr/local/share/bee/loading.html &
|
|
|
|
exec openbox
|