8 lines
169 B
Bash
8 lines
169 B
Bash
#!/bin/bash
|
|
# Restart Home Assistant Dashboard from TTY
|
|
|
|
echo "Restarting Home Assistant Dashboard..."
|
|
~/scripts/stop-dashboard.sh
|
|
sleep 2
|
|
~/scripts/launch-dashboard.sh
|