#!/bin/bash # Setup script for Systemd Timer (Daily Training) SERVICE_FILE="tasks/lowkey-training.service" TIMER_FILE="tasks/lowkey-training.timer" SYSTEMD_DIR="/etc/systemd/system" echo "To install the daily training schedule, please run the following commands:" echo "" echo "sudo cp $SERVICE_FILE $SYSTEMD_DIR/" echo "sudo cp $TIMER_FILE $SYSTEMD_DIR/" echo "sudo systemctl daemon-reload" echo "sudo systemctl enable --now lowkey-training.timer" echo "" echo "To check the status:" echo "systemctl list-timers --all | grep lowkey"