#!/usr/bin/env bash ### # File: start-sunshine.sh # Project: bin # File Created: Tuesday, 4th October 2022 8:22:17 pm # Author: Josh.5 (jsunnex@gmail.com) # ----- # Last Modified: Tuesday, 4th October 2022 8:22:17 pm # Modified By: Josh.5 (jsunnex@gmail.com) ### source /usr/bin/common-functions.sh # CATCH TERM SIGNAL: _term() { kill -TERM "$sunshine_pid" 2>/dev/null } trap _term SIGTERM SIGINT # CONFIGURE: # TODO: Install default configurations # Reset the default username/password if ([ "X${SUNSHINE_USER:-}" != "X" ] && [ "X${SUNSHINE_PASS:-}" != "X" ]); then sunshine /home/${USER}/sunshine/sunshine.conf --creds ${SUNSHINE_USER:-} ${SUNSHINE_PASS:-} fi # EXECUTE PROCESS: # Wait for the X server to start wait_for_x # Start the sunshine server sunshine min_log_level=info /home/${USER}/sunshine/sunshine.conf & sunshine_pid=$! # WAIT FOR CHILD PROCESS: wait "$sunshine_pid"