Hello! I am a screensaver template!

I am located in .

Put the content of your screensaver here!

Incoming Values

(These parameters will be sent to your screensaver when it loads)

Helpful Snippets

Here's some code to load the incoming screenshot, so you can apply effects/etc to it:

      <body>
        <img id="screen" />
      </body>
      <script>
       var img = document.getElementById("screen");
       var url = unescape(decodeURIComponent(window.urlParams.screenshot));
       img.src = url;
     
       if ( typeof(window.urlParams.width) !== "undefined" ) {
         img.width = window.urlParams.width;
         img.height = window.urlParams.height;
       }
      </script>
    
It might make sense to hide any margins on elements in your screensaver with some CSS like this:

      <style>
        * {
        padding: 0;
        margin: 0;
        }
      </style>