๐
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
#/bin/bash -xe | |
systemctl stop pvestatd.service | |
systemctl stop pvedaemon.service | |
systemctl stop pve-cluster.service | |
systemctl stop corosync | |
systemctl stop pve-cluster | |
sqlite3 /var/lib/pve-cluster/config.db "delete from tree where name = 'corosync.conf';" |
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
export ZPLUG_HOME=/usr/local/opt/zplug | |
# Essential | |
source $ZPLUG_HOME/init.zsh | |
# Async for zsh, used by pure | |
zplug "mafredri/zsh-async", from:github, defer:0 | |
# oh-my-zsh | |
zplug "lib/completion", from:oh-my-zsh |
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" |