Automating Hugo Page Creation

This is a simple shell script to automate the creation of hugo pages. Run this command in your site directory to create a script file: nano newpage.sh Now, paste this into the file: #!/bin/bash # Prompt the user for a string. echo "What is the title of your post?" read title command="hugo new posts/$title.md" # Run the command. echo "Running command: $command" eval "$command" Thats it! Now, when you want to make a new post, just run:...

July 18, 2023

SkyConnect Install

Installing the SkyConnect in a Home Assistant VM I’m gonna be honest, I spent over 4 hours trying (and failing) to get virt-manager installed becasue I was too stubborn to just rebuild my VM. With that out of the way, here’s the guide! This Guide is for a libvirtd KVM on Ubuntu First, you are going to want to make a backup of your Home Assistant install and download that somewhere safe (Doesn’t need to be in three places or anything, just somewhere it won’t get deleted)....

June 7, 2023