- Rename hook file: 0060-install-chrome -> 0060-install-chromium - Update all logs and comments to say "Chromium" instead of "Chrome" - Rename chromeStatus -> chromiumStatus in daemon - Update UI to show "Chromium Browser" instead of "Chrome Browser" - Update documentation (readme.plan.md, readme.hints.md) Note: Binary paths (/opt/chromium/chrome) remain as the actual Chromium executable is named "chrome"
15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
/**
|
|
* EcoOS Daemon
|
|
*
|
|
* Main entry point for the EcoOS system daemon.
|
|
* Runs as root via systemd and orchestrates:
|
|
* - Management UI on :3006
|
|
* - Sway compositor as ecouser
|
|
* - Chromium browser in kiosk mode
|
|
*/
|
|
|
|
import { EcoDaemon } from './ts/daemon/index.ts';
|
|
|
|
const daemon = new EcoDaemon();
|
|
await daemon.start();
|