One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| blueprint: | |
| name: "Constant Lux Light Controller" | |
| description: > | |
| Maintains a constant lux level by adjusting light brightness. | |
| Features: | |
| - Prioritized light groups (ceiling vs accent) | |
| - Sun-based color temperature for ceiling lights | |
| - Presence detection with delay | |
| - State restoration when returning to room | |
| - Smooth transitions |
| aardvark | |
| aardwolf | |
| Aaronite | |
| abaction | |
| abaculus | |
| abaissed | |
| abampere | |
| Abarambo | |
| abasedly | |
| abatable |
| #!/usr/bin/env bash | |
| git config --global core.pager delta | |
| git config --global interactive.diffFilter "delta --color-only" | |
| git config --global delta.navigate true | |
| git config --global merge.conflictstyle zdiff3 |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| CACHE_DIR="${XDG_CACHE_HOME:-$HOME/Library/Caches}/wrapper-1password" | |
| CACHE_FILE="$CACHE_DIR/session-token.yaml" | |
| OP_LOCATION="$(command -v op)" | |
| mkdir -p "$CACHE_DIR" |
| package main | |
| import ( | |
| "golang.org/x/oauth2" | |
| "github.com/google/go-github/github" | |
| "context" | |
| "fmt" | |
| "time" | |
| "os" | |
| "log" |