Improving Time Out Screen

Can the time out screen be improved to tell a user they have timed out?

Hi @elsaproskriptive,

This is not something specific to shinyproxy, and can be achieved by using a custom CSS in your shiny app.
You would need to add something like:

div#shiny-disconnected-overlay:before {
	content: "Your session has timed out.";
	text-align: center;
	font-size: 50pt;
	background-color: white;
	padding: 5%;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

save it as styles.css and include in your ui.R with

includeCSS("styles.css")

Thanks for the insight!