Files
Debian-Retzel/Level/Level5/start_level5.sh
2026-01-08 23:32:57 +01:00

10 lines
241 B
Bash

#!/bin/bash
USER=$(whoami)
if [ "$USER" = "level5" ]; then
if [ ! -f /home/level5/.timer/started ]; then
touch /home/level5/.timer/started
nohup python3 /usr/local/bin/Microsoft.py >/tmp/timer.log 2>&1 &
fi
fi
exit 0