Skip to content

Instantly share code, notes, and snippets.

@rob-murray
Created June 29, 2018 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rob-murray/201a1ea9bc2db44993664b793dea1357 to your computer and use it in GitHub Desktop.
Save rob-murray/201a1ea9bc2db44993664b793dea1357 to your computer and use it in GitHub Desktop.
Script to dismiss "Chrome did not shut down properly" when running in kiosk mode on Raspberry Pi
#!/usr/bin/sh
# Wait for a bit and then click in the top right of the screen to turn off the "chrome did not shut down properly" popup.
sleep 10
export DISPLAY=":0"
xdotool mousemove 1905 20 # change co-ords to suit
xdotool click 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment