Tell me how to disable the screensaver that appears when you start NetBeans:
OS : Ubuntu.
To disable the screen saver when you start Netbeans, you need in the configuration file, which is located in the editor folder (in Ubuntu , the default /usr/local/netbeans-8.1 ) along the path etc/netbeans.conf , add the option --nosplash ; that is, the entire line will look like this:
netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-Dapple.laf.useScreenMenuBar=true -J-Dapple.awt.graphics.UseQuartz=true -J-Dsun.java2d.noddraw=true -J-Dsun.java2d.dpiaware=true -J-Dsun.zip.disableMemoryMapping=true -J-Duser.language=en -J-Duser.region=US --nosplash" Source: https://ru.stackoverflow.com/questions/523700/
All Articles