Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable or change IntelliJ IDEA splash screen?

Can anyone help, how to disable or change the splash screen of IntelliJ IDEA?

like image 343
cyrusBloo Avatar asked Mar 28 '12 20:03

cyrusBloo


People also ask

How do I access IntelliJ splash screen?

Select File -> Close project. This will cause the welcome screen to appear. Show activity on this post. For IntelliJ 2020.3 use: `File -> Settings -> Appearance & Behavior -> System Settings and uncheck Reopen projects on startup.

How do I change the default view in IntelliJ?

Back up your settings and restore the defaultsFrom the main menu, select File | Manage IDE Settings | Restore Default Settings. Alternatively, press Shift twice and type Restore default settings . Click Restore and Restart.

How do I change settings in IntelliJ?

To configure project settings, select IntelliJ IDEA | Preferences on macOS or File | Settings on Windows and Linux from the main menu. Alternatively, you can press Ctrl+Alt+S to show the IDE settings. icon. Other settings are global and apply to all existing projects.


1 Answers

To disable the splash screen add -Dnosplash=true in Help | Edit Custom VM Options or nosplash=true in Help | Edit Custom Properties.

It can be also disabled by running with nosplash command line option. For example, idea.exe nosplash (on Windows).

You can modify the menu/desktop shortcut to run with this parameter automatically. There is also a feature request to make it a setting, feel free to vote.

In case you want to change the image, it's loaded from this file: <IDEA_DIR>\lib\resources.jar\idea_logo.png.

like image 140
CrazyCoder Avatar answered Sep 28 '22 05:09

CrazyCoder