core stop login cd /mnt/data/supervisor/homeassistant/.storage/ vi core.config_entries exit core start
Unraid push notifications to Home Assistant
Source: https://serial.rodeo/posts/ha-unraid-notifications/ Login to Home Assistant Go to Settings > Automations Create Automation When > Add Trigger > Webhook Then do > Notifications: Send a notification with [device name] Edit in YAML action: notify.my_devices metadata: {} data: message: "{{ trigger.json.embeds[0].description }}" title: "{{ trigger.json.embeds[0].title }}" Copy Webhook ID Save Login to Unraid Go to Settings > Notifications Check agents to any of the notifications you want to receive Scroll down to Discord Agent function > Enabled Paste the webhook ID from the Home Assistant notification Apply Test
Add notification groups to Home Assistant
Source: Notify Group Add to your notify section in your configurations.yaml. Replace [text] notify: - platform: group name: [group name] services: - service: [Name of target such as mobile_app_iphone] - service: [Name of target such as mobile_app_iphone]
Unable to open Outlook calendar events
A user was having an issue where double click on an outlook event would do nothing instead of opening the event. This was due to the “Open recurring Item” appearing on a non existant monitor. Running outlook.exe /cleanviews resolved the issue
Initial Hugo setup
Source: https://gohugo.io/getting-started/quick-start/ Source: https://gohugo.io/installation/windows/ Source: https://developers.cloudflare.com/pages/framework-guides/deploy-a-hugo-site/ Powershell winget install Hugo.Hugo.Extended winget install --id Git.Git -e --source winget Restart Powershell Navigate to wherever the files will be located hugo new site [name of site] –format yaml cd [name of site] git init Install theme in the [name of sites] PaperMod https://github.com/adityatelange/hugo-PaperMod/releases/tag/v8.0 Edit [name of site]\hugo.yaml change baseURL to your webaddress add theme: [“PaperMod”] hugo new content /content/posts/sample.md Creates a sample post. So you can select it when configuring Front Matter ...