JavaFX - Adding a splash screen to the app
Add the path to the splash screen to the JVM options:
-splash:src/passwords/epsilon_512.png
Add to the module-info:
requires java.desktop;
Add to the main method:
SplashScreen splash = SplashScreen.getSplashScreen();
if (splash != null && splash.isVisible()) {
splash.close();
}