🪄Your Splash
This page describes how to make your own kernel splash using Visual Studio.
Last updated
This page describes how to make your own kernel splash using Visual Studio.
Last updated
You're looking to create a splash for Nitrocid KS! That's great! Make sure that you have Visual Studio installed. Follow the steps to create your first splash.
Press Create a new project
on Visual Studio homepage
Find Class Library
and double-click it
Write your splash name, like in our example, NitrocidSplash
.
Make sure that .NET 8.0
is used. Press Create
.
Right-click on Dependencies
-> Manage NuGet Packages
, find KS
, and install it.
Once the package is installed, go to the Class1.cs
source file
In your class, implement ISplash
and BaseSplash
, ensuring that KS.Misc.Splash
is imported. Then, implement all the members and properties of the interface.
Once you're done implementing all the required methods and properties, remove all references to NotImplementedException
. It should look like below:
Once you're done, follow the steps on how to create a strong name signing key and sign your splash. Then, click on Build Solution
.
Once the solution is built, open the file explorer to the solution directory by right-clicking on the solution and selecting Open Folder in File Explorer
.
Navigate to the output directory and copy the .dll
file to KSSplashes
under the %localappdata%/KS
folder.
Open Nitrocid KS to go to Settings
> General
> Splash name
. Ensure that your splash shows up.