Skip to content

Instantly share code, notes, and snippets.

View LemonDouble's full-sized avatar
💭
I may be slow to respond.

LemonDouble LemonDouble

💭
I may be slow to respond.
View GitHub Profile
-- 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)
##### 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
@LemonDouble
LemonDouble / docker-compose.yaml
Created May 19, 2023 12:42
HomeAssistant Docker Compose
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