10 lines
265 B
Bash
10 lines
265 B
Bash
#!/bin/bash
|
|
# Test script to launch Home Assistant dashboard manually
|
|
|
|
echo "Launching Home Assistant Dashboard..."
|
|
echo "URL: http://homeassistant.local:8123/lovelace/default_view"
|
|
echo ""
|
|
echo "Press Ctrl+C to stop"
|
|
|
|
/home/kyle/scripts/homeassistant-dashboard.sh
|