- Create a PNG of the appropriate size (check with
fbset), put it in/home/pi/splash.png /boot/config.txt- add
disable_splash=1
- add
/boot/cmdline.txt- add
logo.nologo consoleblank=0 loglevel=1 quietto the end of the cmdline
- add
sudo systemctl disable getty@tty3sudo apt install fbisudo vi /etc/systemd/system/splashscreen.service- fill with contents:
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
| blueprint: | |
| name: Door-held activation (manual control preserved) | |
| description: >- | |
| While a door is open, and for a configurable time after it closes, holds a | |
| set of entities on and another set off (e.g. camera status light on, | |
| camera privacy mode off). Afterwards it reverts only the entities it | |
| actually changed, and only if they are still in the state it put them in, | |
| so anything already active beforehand or changed by hand during the window | |
| is left alone. | |
| domain: automation |
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
| blueprint: | |
| name: Door light after dark (manual control preserved) | |
| description: >- | |
| Turns a light on for a set time when a door opens, but only when the sun is | |
| below a configurable elevation. Never touches a light that was already on, | |
| and backs off if the light is turned off manually during the window. | |
| Re-opening the door during the window restarts the timer. | |
| domain: automation | |
| homeassistant: | |
| min_version: 2024.10.0 |
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
| import base64 | |
| import broadlink | |
| import click | |
| import json | |
| import pdb | |
| def split_csv(ctx, param, value): | |
| return [x.strip() for x in value.split(',')] | |
| def generate_temps(min, max, step): |
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
| #!/usr/bin/env python | |
| import urllib2 | |
| import json | |
| import itertools | |
| import sys | |
| import argparse | |
| def groupby(data, key): | |
| kf = lambda x: x[key] | |
| result = itertools.groupby(sorted(data,None,kf), kf) |
I hereby claim:
- I am bmfurtado on github.
- I am bmfurtado (https://keybase.io/bmfurtado) on keybase.
- I have a public key whose fingerprint is 0A2D 3FA4 400D 50E2 FA6F FBA0 9F8D B6C6 2F7A 84B8
To claim this, I am signing this object:
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
| Moved to: https://github.com/bmfurtado/iterm2-cssh |