mirror of
https://github.com/screentinker/screentinker.git
synced 2026-05-15 07:32:23 -06:00
ScreenTinker - open source digital signage management software. MIT License, all features included, no license gates. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
595 B
Bash
18 lines
595 B
Bash
#!/bin/bash
|
|
# Install ScreenTinker as a systemd service
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
SERVICE_FILE="$SCRIPT_DIR/remotedisplay.service"
|
|
|
|
echo "Installing ScreenTinker service..."
|
|
sudo cp "$SERVICE_FILE" /etc/systemd/system/remotedisplay.service
|
|
sudo systemctl daemon-reload
|
|
sudo systemctl enable remotedisplay
|
|
sudo systemctl start remotedisplay
|
|
echo "Done! Service status:"
|
|
sudo systemctl status remotedisplay --no-pager
|
|
echo ""
|
|
echo "Commands:"
|
|
echo " sudo systemctl status remotedisplay"
|
|
echo " sudo systemctl restart remotedisplay"
|
|
echo " sudo journalctl -u remotedisplay -f"
|