#!/bin/bash echo "Starting Countdown Timer Application..." if [ ! -d "venv" ]; then echo "Virtual environment not found!" echo "Please run ./setup.sh first" exit 1 fi source venv/bin/activate python main.py