- Add feh and python3-pil to package list - Add chroot hook that generates /usr/share/bee/wallpaper.png using PIL: black background, EASY-BEE box-drawing logo in amber (#f6c90e), "Hardware Audit LiveCD" subtitle in dim amber — matches motd exactly - bee-openbox-session: set wallpaper with feh --bg-fill, fall back to xsetroot -solid black if wallpaper not found Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
897 B
Bash
Executable File
40 lines
897 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
|
|
|
|
# Set desktop background.
|
|
if [ -f /usr/share/bee/wallpaper.png ]; then
|
|
feh --bg-fill /usr/share/bee/wallpaper.png
|
|
else
|
|
xsetroot -solid '#000000'
|
|
fi
|
|
|
|
tint2 &
|
|
|
|
# Wait up to 60s for bee-web before opening Chromium.
|
|
# Without this Chromium gets connection-refused and shows a blank page.
|
|
_i=0
|
|
while [ $_i -lt 60 ]; do
|
|
curl -sf http://localhost/healthz >/dev/null 2>&1 && break
|
|
sleep 1
|
|
_i=$((_i+1))
|
|
done
|
|
unset _i
|
|
|
|
chromium \
|
|
--disable-infobars \
|
|
--disable-translate \
|
|
--no-first-run \
|
|
--disable-session-crashed-bubble \
|
|
--disable-features=TranslateUI \
|
|
--user-data-dir=/tmp/bee-chrome \
|
|
--start-maximized \
|
|
http://localhost/loading &
|
|
|
|
exec openbox
|