Add a fallback to a possible existing supported mode when auto switching refresh rates
This commit is contained in:
@@ -85,11 +85,19 @@ if ([ "X${SUNSHINE_CLIENT_WIDTH:-}" != "X" ] && [ "X${SUNSHINE_CLIENT_HEIGHT:-}"
|
|||||||
xrandr --newmode "${__client_mode:?}" ${__client_modeline##*\"}
|
xrandr --newmode "${__client_mode:?}" ${__client_modeline##*\"}
|
||||||
echo " - Adding new mode '${__client_mode:?}' to device '${__primary_output:?}'"
|
echo " - Adding new mode '${__client_mode:?}' to device '${__primary_output:?}'"
|
||||||
xrandr --addmode "${__primary_output:?}" "${__client_mode:?}"
|
xrandr --addmode "${__primary_output:?}" "${__client_mode:?}"
|
||||||
|
__mode_added=$?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set the current resoultion to the new mode
|
# Set the current resoultion to the new mode
|
||||||
echo " - Setting the display mode to '${__client_mode:?}'"
|
if [ "${__mode_added:?}" -gt 0 ]; then
|
||||||
xrandr --output "${__primary_output:?}" --mode "${__client_mode:?}" --rate "${SUNSHINE_CLIENT_FPS:?}"
|
echo " - Attempting to set the display mode to a supported '${SUNSHINE_CLIENT_WIDTH:?}x${SUNSHINE_CLIENT_HEIGHT:?}' mode"
|
||||||
|
xrandr --output "${__primary_output:?}" --mode ${SUNSHINE_CLIENT_WIDTH:?}x${SUNSHINE_CLIENT_HEIGHT:?} --refresh ${SUNSHINE_CLIENT_FPS:?}
|
||||||
|
[ $? -eq 0 ] && echo " - SUCCESS"
|
||||||
|
else
|
||||||
|
echo " - Setting the display mode to '${__client_mode:?}'"
|
||||||
|
xrandr --output "${__primary_output:?}" --mode "${__client_mode:?}" --rate "${SUNSHINE_CLIENT_FPS:?}"
|
||||||
|
[ $? -eq 0 ] && echo " - SUCCESS"
|
||||||
|
fi
|
||||||
|
|
||||||
# Save original display settings to config file. This will be read and used to restore the original display settings when the client disconnects.
|
# Save original display settings to config file. This will be read and used to restore the original display settings when the client disconnects.
|
||||||
echo "primary_output='${__primary_output:?}'" >> /tmp/sunshine-exec-run.conf
|
echo "primary_output='${__primary_output:?}'" >> /tmp/sunshine-exec-run.conf
|
||||||
|
|||||||
Reference in New Issue
Block a user