Files
RTSP-Streamer/deploy/profile-snippet.sh
2026-07-01 18:21:14 -05:00

8 lines
405 B
Bash

# rtsp-streamer kiosk launcher — appended to the kiosk user's ~/.bash_profile
# by deploy/install.sh. Starts sway (and thus the video wall) only on the
# physical console tty1, so SSH logins get a normal shell.
if [ "$(tty)" = "/dev/tty1" ] && [ -z "$WAYLAND_DISPLAY" ] && [ -z "$SSH_CONNECTION" ]; then
export XDG_RUNTIME_DIR="/run/user/$(id -u)"
exec sway -c /etc/rtsp-streamer/sway/config
fi