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: Notifications & Announcements | |
| description: > | |
| # 📢 Notifications & Announcements | |
| **Version: 1.0** | |
| State your trigger and spread the word 💬 🔉 | |
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: Renew Let's Encrypt Certificate | |
| description: Renew Certificate when due date is below given value | |
| domain: automation | |
| input: | |
| cert_expiry_sensor: | |
| name: Certificate Expiry Sensor | |
| description: Sensor from the Certificate Expiry Integration (https://www.home-assistant.io/integrations/cert_expiry) | |
| 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: Calendar Notifications & Actions | |
| description: > | |
| # 📅 Calendar Notifications & Actions | |
| **Version: 1.5** | |
| Transform Your Calendar: Turn Events Into Notifications and 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
| blueprint: | |
| name: Appliance Notifications & Actions | |
| description: > | |
| # 📳 Appliance Notifications & Actions | |
| **Version: 2.2** | |
| 🤔 Watts your appliance up to, you're always in the know from start to finish!🛎️🔌💸 | |
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: Low Battery Notifications & Actions | |
| description: > | |
| # 🪫 Low Battery Notifications & Actions | |
| **Version: 2.3** | |
| 🚀 Stay Charged, Stay Smart! Let's automate and take charge of your battery maintenance!🔋⚡ | |
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: Bathroom Humidity Exhaust Fan | |
| description: > | |
| # 🚿 Bathroom Humidity Exhaust Fan | |
| **Version: 2.4** | |
| Step into the future of freshness - customize it your way and let the automated fan system handle the humidity control for you! 🌿🚿 | |
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
| function ssh-fzf () { | |
| local selected_host=$(grep "Host " ~/.ssh/config | cut -b 6- | fzf --query "$LBUFFER") | |
| if [ -n "$selected_host" ]; then | |
| BUFFER="ssh ${selected_host}" | |
| zle accept-line | |
| fi | |
| zle reset-prompt | |
| } | |
| zle -N ssh-fzf | |
| bindkey '^\' ssh-fzf |
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
| languages: | |
| en: | |
| menu: | |
| main: | |
| - identifier: menu_home | |
| name: "Home" | |
| url: "/home/" | |
| weight: 10 | |
| - identifier: menu_about | |
| name: "About" |
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
| # Add multimedia source | |
| echo "deb http://www.deb-multimedia.org wheezy main non-free" >> /etc/apt/sources.list | |
| echo "deb-src http://www.deb-multimedia.org wheezy main non-free" >> /etc/apt/sources.list | |
| apt-get update | |
| apt-get install deb-multimedia-keyring # if this aborts, try again | |
| apt-get update | |
| # Go to local source directory | |
| cd /usr/local/src |
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
| Install WireGuard via whatever package manager you use. For me, I use apt. | |
| $ sudo add-apt-repository ppa:wireguard/wireguard | |
| $ sudo apt-get update | |
| $ sudo apt-get install wireguard | |
| MacOS | |
| $ brew install wireguard-tools | |
| Generate key your key pairs. The key pairs are just that, key pairs. They can be |