testsAndMisc/python_pkg/screen_locker/install_systemd.sh

75 lines
2.7 KiB
Bash
Raw Normal View History

2025-11-18 18:07:15 +01:00
#!/bin/bash
# Install workout locker as a systemd user service
2026-03-08 21:39:39 +01:00
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SCREEN_LOCK_PATH="$SCRIPT_DIR/screen_lock.py"
2025-11-18 18:07:15 +01:00
SERVICE_FILE="$SCRIPT_DIR/workout-locker.service"
TIMER_FILE="$SCRIPT_DIR/workout-locker.timer"
2025-11-18 18:07:15 +01:00
USER_SERVICE_DIR="$HOME/.config/systemd/user"
SERVICE_NAME="workout-locker.service"
TIMER_NAME="workout-locker.timer"
2025-11-18 18:07:15 +01:00
2026-03-08 21:39:39 +01:00
# Check if service is already installed
if [ -f "$USER_SERVICE_DIR/$SERVICE_NAME" ]; then
echo "Screen locker systemd service is already installed."
echo "Current status:"
systemctl --user status "$SERVICE_NAME" --no-pager || true
echo ""
read -p "Do you want to reinstall/update it? (y/n) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Keeping existing installation"
exit 0
fi
fi
2025-11-18 18:07:15 +01:00
# Create user systemd directory if it doesn't exist
mkdir -p "$USER_SERVICE_DIR"
# Copy service and timer files to user systemd directory
2025-11-18 18:07:15 +01:00
cp "$SERVICE_FILE" "$USER_SERVICE_DIR/$SERVICE_NAME"
cp "$TIMER_FILE" "$USER_SERVICE_DIR/$TIMER_NAME"
2025-11-18 18:07:15 +01:00
# Update paths in the service file to use absolute paths
REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
sed -i "s|WorkingDirectory=.*|WorkingDirectory=$REPO_ROOT|" "$USER_SERVICE_DIR/$SERVICE_NAME"
sed -i "s|Environment=PYTHONPATH=.*|Environment=PYTHONPATH=$REPO_ROOT|" "$USER_SERVICE_DIR/$SERVICE_NAME"
sed -i "s|ExecStart=/usr/bin/python3.*|ExecStart=/usr/bin/python3 -m python_pkg.screen_locker.screen_lock --production|" "$USER_SERVICE_DIR/$SERVICE_NAME"
2025-11-18 18:07:15 +01:00
# Reload systemd daemon
systemctl --user daemon-reload
# Enable the service to start on login and the timer for periodic checks
2025-11-18 18:07:15 +01:00
systemctl --user enable "$SERVICE_NAME"
systemctl --user enable --now "$TIMER_NAME"
2025-11-18 18:07:15 +01:00
echo "✓ Workout locker service installed"
echo "✓ Service will start automatically on next login"
echo ""
echo "To start now: systemctl --user start workout-locker"
echo "To check status: systemctl --user status workout-locker"
echo "To check timer: systemctl --user list-timers workout-locker.timer"
2025-11-18 18:07:15 +01:00
echo "To stop: systemctl --user stop workout-locker"
echo "To disable autostart: systemctl --user disable workout-locker workout-locker.timer"
2026-03-08 21:39:39 +01:00
# Check autostart installation status
echo ""
echo "=== Autostart Status ==="
if systemctl --user is-enabled "$SERVICE_NAME" &>/dev/null; then
echo "✓ systemd service: INSTALLED and enabled"
else
echo "✗ systemd service: NOT enabled"
fi
I3_CONFIG="$HOME/.config/i3/config"
if [ -f "$I3_CONFIG" ] && grep -q "exec.*screen_lock.py" "$I3_CONFIG"; then
echo "✓ i3 autostart: INSTALLED"
else
echo " i3 autostart: not installed"
fi
# Immediately check if today's workout is done; block if not
echo ""
echo "=== Checking today's workout status ==="
python3 "$SCREEN_LOCK_PATH" --production