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: Third Reality MK1 Keyboard Automation | |
| description: | | |
| Control your smart home with the Third Reality MK1 keyboard function keys. | |
| How to use: | |
| 1. Select your keyboard from your matter devices | |
| 2. Configure actions for each F‑key | |
| 3. Press Matter + F1–F12 to trigger actions |
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
| # Forked from https://github.com/gmlupatelli/blueprints_repo/blob/master/unavailable_entities_notification/unavailable_entities_notification.yaml | |
| blueprint: | |
| name: Unavailable entity detection & notification | |
| description: > | |
| Regularly test all entities' status to check for unavailability. | |
| Supports exclusion by entities, devices, areas, and labels for flexible filtering. | |
| domain: automation | |
| source_url: https://github.com/gmlupatelli/blueprints_repo/blob/master/unavailable_entities_notification/unavailable_entities_notification.yaml | |
| # === BLUEPRINT INPUTS === |
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: Emulated Roku Extended | |
| description: Create Automations for Emulated Roku Keypresses | |
| domain: automation | |
| input: | |
| emulated_roku_name: | |
| name: Emulated Roku Name | |
| description: The name of the Emulated Roku | |
| selector: | |
| text: |
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
| Clipboard = { | |
| "isSecureContent": function() { | |
| return (window.isSecureContext && navigator.clipboard); | |
| }, | |
| "secureCopy": function(text) { | |
| navigator.clipboard.writeText(text) | |
| }, |
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 bash | |
| # Backs up and restores gnome3 keybindings | |
| # Tested with Gnome 3.36.8 | |
| # by @peterrus, revisions by @blizzrdof77 | |
| set -e | |
| # set -x | |
| SCRIPT_NAME=$(basename "$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
| {"[email protected]":{"/org/gnome/shell/extensions/wintile/":"[/]\ndelay=1000\ndistance=10\nnon-ultra-rows=1\nrows=1"},"[email protected]":{"/org/gnome/shell/extensions/systemd-manager/":"[/]\ncommand-method='pkexec'\nshow-mask=false\nsystemd=['{\"name\":\"Docker\",\"service\":\"docker.service\",\"type\":\"system\"}', '{\"name\":\"PostgreSQL\",\"service\":\"postgresql.service\",\"type\":\"system\"}', '{\"name\":\"TriggerCMD\",\"service\":\"triggercmdagent.service\",\"type\":\"system\"}', '{\"name\":\"Bluetooth\",\"service\":\"bluetooth.service\",\"type\":\"system\"}', '{\"name\":\"Apache\",\"service\":\"apache2.service\",\"type\":\"system\"}']"},"[email protected]":{"/org/gnome/shell/extensions/run-or-raise/":""},"[email protected]":{},"[email protected]":{"/org/gnome/shell/extensions/signalshell/":"[/]\ndefault-dark=true\nname=''"},"[email protected]":{"/org/gnome/shell/extensions/dash-to-dock/":"[/]\nalways-center-icons=true\nanimate-show-apps=true\nanimation |
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: Hue Event - Lutron Aurora Dimmer Controller Advanced Blueprint (v1.3.0) | |
| description: Control lights with a Lutron Aurora Dimmer Pressing in the dimmer button will toggle lights regardless of dimmer status. Rotating the dimmer will increase and decrease the light brightness. | |
| domain: automation | |
| input: | |
| remote: | |
| name: Lutron Aurora Dimmer Switch | |
| description: Lutron Aurora Z3-1BRL | |
| selector: | |
| device: |
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: ZHA - Lutron Aurora Dimmer Automation Improved | |
| description: 'Control lights with a Lutron Aurora Dimmer Pressing in the dimmer | |
| button will toggle lights regardless of dimmer status. Rotating the dimmer will increase and decrease the light brightness. | |
| Adjust the sensitivity if updates from the dimmer are being sent too quickly. Adds the ability to dim to off and disable the button. (The button is unreliable for most people.) Based on the great work of bjpetit and richlee91!' | |
| domain: automation | |
| input: | |
| remote: | |
| name: Lutron Aurora Dimmer Switch | |
| description: Lutron Aurora Z3-1BRL |
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: Binary Sensor-activated Light Switch Controller | |
| description: Turn on/off a light when binary sensor value turns on/off. | |
| domain: automation | |
| source_url: https://gist.github.com/blizzrdof77/07417204379764fd76fd8b8226190e4b | |
| input: | |
| trigger_entity: | |
| name: Binary Sensor | |
| selector: | |
| entity: |
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: Automatic light or switch turn off after timeout | |
| description: > | |
| Given a switchable entity, when it is turned on, it will automatically turn off after a set timeout period off after a certain period of time. | |
| Based on: | |
| - [Turn Off Light After Time](https://gist.github.com/JonTheNiceGuy/5ac636739165dd593030c0fed16eb618) by [JonTheNiceGuy](https://gist.github.com/JonTheNiceGuy) | |
| - [Automatic light or switch turn off after time](https://gist.github.com/tdiekel/88ac0967cf6d3002aa91e65e3768eb45) by [tdiekel](https://gist.github.com/tdiekel) | |
| domain: automation | |
| input: | |
| entity: |
NewerOlder