My Cross-Platform Home Brewed Reminder System - Tutorial for GNU/Linux users (tested in Garuda Linux)
When I began to Vibe Code my Show-It.py Python3 script, I intended it to work on both Windows 11 Pro 25H2 and Garuda Mokka Linux, and my efforts were successful on Windows, but when I copied the script file to Garuda, while I could run it from the command line, it turned out that systemd is much fussier than the Windows Task Manager, so I had to embark on a bit of a journey to make my script work corectly with systemd. As I embark on writing this Linux-based tutorial, my latest journey's complete after using Googles Gemini to help me merge my two versions of my script into one, so it truly does execute equally well on both Windows 11 Pro 25H2 and Garuda Mokka Linux, my two favorite environments to work and play on. First things first! Check that you have Python installed on your system, using this command in your terminal: python --version # If Python's installed this command should return the installed version (We want Python3 for my Python script) If for some reason, this ...