This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ae2craft.lua : AE2 autocrafting monitor | |
| -- * live list of jobs currently crafting (elapsed time, stuck warning) | |
| -- * network dashboard (power / item-fluid-chemical storage) | |
| -- * last completed job on one line | |
| -- * "Today" panel: per-item totals crafted today (persisted; rolls if long) | |
| -- Needs: Advanced Peripherals ME Bridge + a Monitor attached to the computer. | |
| -- Note: CC font is text-only (no Hangul / no icons); UI is English. | |
| --------------------------- config --------------------------- | |
| local TEXT_SCALE = 1.5 -- 0.5 (smallest) .. 5 (largest) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ##### Default Settings Start ##### | |
| # Loads default set of integrations. Do not remove. | |
| default_config: | |
| # Load frontend themes from the themes folder | |
| frontend: | |
| themes: !include_dir_merge_named themes | |
| # Text to speech |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| homeassistant: | |
| container_name: homeassistant | |
| image: "ghcr.io/home-assistant/home-assistant:stable" | |
| volumes: | |
| - ./config:/config | |
| - /etc/localtime:/etc/localtime:ro | |
| restart: unless-stopped | |
| privileged: true |