hotel_pi/scripts/return-to-kiosk.sh
2026-04-06 21:33:52 -04:00

20 lines
433 B
Bash

#!/bin/bash
# Return to Hotel Pi kiosk from Plex or other applications
# This script kills the current app and restarts the kiosk
set -e
LOG_FILE="${LOG_FILE:-/tmp/hotel_pi_return.log}"
echo "🔙 Returning to kiosk..." | tee -a "$LOG_FILE"
echo "Time: $(date)" | tee -a "$LOG_FILE"
# Kill any fullscreen applications
pkill -f chromium || true
pkill -f plex || true
sleep 1
# Restart the kiosk
/home/pi/scripts/launch-kiosk.sh