8 lines
405 B
Bash
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
|