Files
EOJHL-LED-Scoreboard/stop_display.sh
2026-02-13 12:22:06 -05:00

19 lines
423 B
Bash

#!/bin/bash
# Get the current user
CURRENT_USER=$(whoami)
echo "Stopping LED Matrix Display Service for user: $CURRENT_USER..."
# Stop the service
sudo systemctl stop ledmatrix.service
# Check the status
echo "Service status:"
sudo systemctl status ledmatrix.service
echo ""
echo "LED Matrix Display Service has been stopped."
echo ""
echo "To start the service again:"
echo " sudo systemctl start ledmatrix.service"