Screensaver modding guide

What is the screensaver for the kernel?

The screensaver is the idle process that will activate if your computer went idle. You can also see the default screensaver by savescreen that is set by you or by the kernel.

The screensaver can also be customized, and we'll teach you how to make your first screensaver, to make from the simplest screensavers to the legendary ones. The custom screensavers are glorified dynamic mods.

[!TIP] To get started to our Kernel Simulator API, visit this page.

How to start your own screensaver on Visual Studio?

[!NOTE] We recommend following the template repository for making your own screensaver here.

If you're going to make your mod, follow these steps:

  1. On the Start Page, click on New Project

  2. Click on Class Library (.NET Framework) or Class Library, select VB or C#, and name your mod or modpack. Select Framework as .NET Framework 4.8 or .NET 6.0. When you're finished, click Create.

  3. Right-click on References in the Solution Explorer, and press Manage NuGet packages...

  4. Go to Browse, and find Kernel Simulator and install it.

  5. You will see that your KS executable files are added to the references. In your project file, this will be added:

    <PackageReference Include="KS">
      <Version>0.0.21.1</Version>
    </PackageReference>
  1. The code will be ready in your ScreensaverName codefile:

Now, follow these steps:

  1. Between the Public Class... and the End Class lines, let Visual Studio know that you're going to create your KS screensaver by writing: Implements ICustomSaver

  2. Define properties for mod information by putting below the Implements IScript:

  1. Make your init screensaver sub named InitSaver() that implements the ICustomSaver.InitSaver, by writing:

  1. Replace every Your code here comment with your code. Repeat this step on all the interface subs

  2. Make your pre-display (Called before displaying screensaver) sub named PreDisplay() and post-display (called after displaying scrensaver) sub named PostDisplay() that implement the ICustomSaver.PreDisplay and ICustomSaver.PostDisplay, by writing:

  1. Make your display code (it should display something) sub named ScrnSaver() that implements the ICustomSaver.ScrnSaver, by writing:

  1. Run the build. When the build is successful, ignore the dialog box that appears.

  2. Run your Kernel Simulator you've just referenced to in your project, and load, set default, and lock your screen and your screensaver is there.

Optional stuff

  1. You can make your subs anywhere on the class, but if:

    • they're on the different class, make a separate code file for it:

  • they're trying to re-initialize the screensaver by re-calling InitSaver(), Try so on your test environment first, then the production environment if that worked properly.

  1. The new subs or functions should meet the following conditions:

    • They shouldn't make an infinite loop unless you're making them that exits if specified conditions are met

    • They shouldn't try to cause errors with the kernel.

    • Put your sub call on one of the three subs that implements the ICustomSaver interface. Ex. If you're going to make a sub that's going to be called on screensaver display, place your sub call on the ScrnSaver() sub, and then your code on your sub.

  2. If you're going to add imports, these rules must be met:

    • Don't import KS by itself. KS does that automatically

    • When importing modules/classes like TextWriterColor, it's written like this: Imports KS.Misc.Writers.TextWriterColor

Examples

Here are two examples of how to make a screensaver:

In-Console Message Box, and Soon, Overnight, or Rude (Go away...) messages

The back message box screensaver tells people that the computer owner is gone, or the owner tells that they should go away because there were important things going on in their computers. This is achieved in XLock in old Linux systems by putting 3 modes, Soon, Overnight, and Rude.

  1. Write below the (Assume that your mod name is SOR) Public Class SOR: Implements ICustomSaver

  2. Write above the Public Class SOR:

  1. You should get errors saying that these subs should be created.

  2. Make your start screensaver event handler by writing:

  1. Since we're not implementing anything before displaying screensaver, we're going to leave this blank:

  1. Write above the Property Initialized...:

  1. Write on the ScrnSaver() sub:

  1. You may need to create 1 function and 2 subs for this to work. Write them below the last End Sub:

  1. The code should look like this:

  1. Run the build. When the build is successful, ignore the dialog box that appears.

  2. Run the target KS once you copied the generated .dll file, set as default, and run savescreen.

Simple Blank screen

  1. Write below the (Assume that your mod name is Blank) Public Class Blank: Implements ICustomSaver

  2. Write above the Public Class Blank (assuming that your classname is Blank):

  1. Write these below the Implements ICustomSaver:

  1. Write inside the ScrnSaver sub:

  1. The code should look like this:

  1. Run the build. When the build is successful, ignore the dialog box that appears.

  2. Run the target KS once you copied the generated .dll file, set as default, and run savescreen.

More examples

If you want to check out more examples, feel free to check them out in the KSModExamples respository in GitHub.

Last updated