04.01.2021

Storms Of Nimbus Download Mac Os

20
Storms Of Nimbus Download Mac Os 8,7/10 349 reviews

Problem Statement:

. We wait on the leader nimbus to ensure at least N non leader nimbus has the code replicated, with a user configurable timeout. When a non leader nimbus receives the notification about new code, it downloads the meta file from leader nimbus and then downloads the real code by calling code distributor’s download function with metafile as input. Download games and applications from Blizzard and partners. Heroes of the Storm™. Download for Mac. Free nimbus software, best nimbus download at - Nimbus for Mac. Nimbus for Mac 0.7.0.Nimbus is an iOS framework whose feature set grows only as fast as its documentation.

We are a storm chasing group from around the US set out to learn from what nature offers us first hand. Photography, videography, Skywarn, storm reporting, and journalism. Nimbus Notes 3.1.7 for Mac can be downloaded from our website for free. Nimbus Notes for Mac belongs to Internet & Network Tools. This Mac download was checked by our antivirus and was rated as safe. The actual developer of this free Mac application is Nimbus Web INC.

Currently the storm master aka nimbus, is a process that runs on a single machine under supervision. In most cases the nimbus failure is transient and it is restarted by the supervisor. However sometimes when disks fail and networks partitions occur, nimbus goes down. Under these circumstances the topologies run normally but no new topologies can be submitted, no existing topologies can be killed/deactivated/activated and if a supervisor node fails then the reassignments are not performed resulting in performance degradation or topology failures. With this project we intend to resolve this problem by running nimbus in a primary backup mode to guarantee that even if a nimbus server fails one of the backups will take over.

Requirements:

  • Increase overall availability of nimbus.
  • Allow nimbus hosts to leave and join the cluster at will any time. A newly joined host should auto catch up and join the list of potential leaders automatically.
  • No topology resubmissions required in case of nimbus fail overs.
  • No active topology should ever be lost.

Leader Election:

The nimbus server will use the following interface:

On startup nimbus will check if it has code for all active topologies available locally. Once it gets to this state it will call addToLeaderLockQueue() function. When a nimbus is notified to become a leader it will check if it has all thecode locally before assuming the leadership role. If any active topology code is missing, the node will not accept the leadership role instead it will release the lock and wait till it has all the code before requeueing for leader lock.

The first implementation will be Zookeeper based. If the zookeeper connection is lost/resetted resulting in loss of lockor the spot in queue the implementation will take care of updating the state such that isLeader() will reflect the current status.The leader like actions must finish in less than minimumOf(connectionTimeout, SessionTimeout) to ensurethe lock was held by nimbus for the entire duration of the action (Not sure if we want to just state this expectation and ensure that zk configurations are set high enough which will result in higher failover time or we actually want to create some sort of rollback mechanism for all actions, the second option needs a lot of code). If a nimbus that is not leader receives a request that only a leader can perform it will throw a RunTimeException.

Following steps describes a nimbus failover scenario:* Let’s say we have 4 topologies running with 3 nimbus nodes and code-replication-factor = 2. We assume that the invariant “The leader nimbus has code for all topologies locally” holds true at the beginning. nonleader-1 has code for the first 2 topologies and nonLeader-2 has code for the other 2 topologies.* Leader nimbus dies, hard disk failure so no recovery possible.* nonLeader-1 gets a zookeeper notification to indicate it is now the new leader. before accepting the leadership it checks if it has code available for all 4 topologies(these are topologies under /storm/storms/). It realizes it only hascode for 2 topologies so it relinquishes the lock and looks under /storm/code-distributor/topologyId to find out from where can it download the code/metafile for the missing topologies. it finds entries for the leader nimbus and nonleader-2. It will try downloading from both as part of its retry mechanism.* nonLeader-2’s code sync thread also realizes that it is missing code for 2 topologies and follows the same process described in step-3 to download code for missing topologies. * eventually at least one of the nimbuses will have all the code locally and will accept leadership.This sequence diagram describes how leader election and failover would work with multiple components.

Nimbus state store:

Nimbus App Video

Currently the nimbus stores 2 kind of data* Meta information like supervisor info, assignment info which is stored in zookeeper* Actual topology configs and jars that is stored on nimbus host’s local disk.

To achieve fail over from primary to backup servers nimbus state/data needs to be replicated across all nimbus hosts or needs to be stored in a distributed storage. Replicating the data correctly involves state management, consistency checksand it is hard to test for correctness.However many storm users do not want to take extra dependency on another replicatedstorage system like HDFS and still need high availability.Eventually, we want to move to the bittorrent protocol for code distribution given the size of the jars and to achieve better scaling when the total number of supervisors is very high. The current file system based model for code distribution works fine with systems that have file system like structurebut it fails to support a non file system based approach like bit torrent. To support bit torrent and all the filesystem based replicated storage systems we propose the following interface:

To support replication we will allow the user to define a code replication factor which would reflect number of nimbus hosts to which the code must be replicated before starting the topology. With replication comes the issue of consistency. We will treat zookeeper’s list of active topologies as our authority for topologies for which the code must exist on a nimbus host. Any nimbus host that does not have all the code for all the topologies which are marked as active in zookeeper will relinquish it’s lock so some other nimbus host could become leader. A background thread on all nimbus host will continuously try to sync code from other hosts where the code was successfully replicated so eventually at least one nimbus will accept leadership as long as at least one seed hosts exists for each active topology.

Following steps describe code replication amongst nimbus hosts for a topology:* When client uploads jar, nothing changes.* When client submits a topology, leader nimbus calls code distributor’s upload function which will create a metafile stored locally on leader nimbus. Leader nimbus will write new entries under /storm/code-distributor/topologyId to notify all nonleader nimbuses that they should download this new code.* We wait on the leader nimbus to ensure at least N non leader nimbus has the code replicated, with a user configurable timeout.* When a non leader nimbus receives the notification about new code, it downloads the meta file from leader nimbus and thendownloads the real code by calling code distributor’s download function with metafile as input.* Once non leader finishes downloading code, it will write an entry under /storm/code-distributor/topologyId to indicate it is one of the possible places to download the code/metafile in case the leader nimbus dies.* leader nimbus goes ahead and does all the usual things it does as part of submit topologies.

The following sequence diagram describes the communication between different components involved in code distribution.

Nimbus Screenshot Free Download

Thrift and Rest API

In order to avoid workers/supervisors/ui talking to zookeeper for getting master nimbus address we are going to modify the getClusterInfo API so it can also return nimbus information. getClusterInfo currently returns ClusterSummary instancewhich has a list of supervisorSummary and a list of 'topologySummaryinstances. We will add a list ofNimbusSummaryto theClusterSummary`. See the structures below:

This will be used by StormSubmitter, Nimbus clients,supervisors and ui to discover the current leaders and participating nimbus hosts. Any nimbus host will be able to respond to these requests. The nimbus hosts can read this information once from zookeeper and cache it and keep updating the cache when the watchers are fired to indicate any changes,which should be rare in general case.

Configuration

You can use nimbus ha with default configuration , however the default configuration assumes a single nimbus host so ittrades off replication for lower topology submission latency. Depending on your use case you can adjust following configurations:* storm.codedistributor.class : This is a string representing fully qualified class name of a class that implementsorg.apache.storm.codedistributor.ICodeDistributor. The default is set to 'org.apache.storm.codedistributor.LocalFileSystemCodeDistributor'.This class leverages local file system to store both meta files and code/configs. This class adds extra load on zookeeper as even afterdownloading the code-distrbutor meta file it contacts zookeeper in order to figure out hosts from where it can downloadactual code/config and to get the current replication count. An alternative is to use 'org.apache.storm.hdfs.ha.codedistributor.HDFSCodeDistributor' which relies on HDFS but does not add extra load on zookeeper and will make topology submission faster.* topology.min.replication.count : Minimum number of nimbus hosts where the code must be replicated before leader nimbuscan mark the topology as active and create assignments. Default is 1.* topology.max.replication.wait.time.sec: Maximum wait time for the nimbus host replication to achieve the nimbus.min.replication.count.Once this time is elapsed nimbus will go ahead and perform topology activation tasks even if required nimbus.min.replication.count is not achieved. The default is 60 seconds, a value of -1 indicates to wait for ever.*nimbus.code.sync.freq.secs: frequency at which the background thread on nimbus which syncs code for locally missing topologies will run. default is 5 minutes.

Project Nimbus Download

Note: Even though all nimbus hosts have watchers on zookeeper to be notified immediately as soon as a new topology is available for codedownload, the callback pretty much never results in code download. In practice we have observed that the desired replication is only achieved once the background-thread runs. So you should expect your topology submission time to be somewhere between 0 to (2 * nimbus.code.sync.freq.secs) for any nimbus.min.replication.count > 1.

Dark theme for Nimbus Look and Feel

Plugin owner:saubrecht
Website:www.netbeans.org
Added:2013-01-10
License:GPL
Category:Uncategorized
Downloaded:60,246 times
Rating:
4.33, by 10 users

Plugin LogShow log
2013-03-04 10:45:21saubrechtPlugin edited, id:46003, pubid:46003
2013-03-04 10:45:21saubrechtPlugin edit initiated
2013-03-01 18:57:23cengizcVote cast by cengizc for Dark Nimbus Theme, UC 7.3, vote value: 1; verification overall status recalculated: 1 (0 NoGos, 3 Gos of 9 requests, therefore overal GO)
2013-02-27 08:10:10jkovalskyVote cast by jkovalsky for Dark Nimbus Theme, UC 7.3, vote value: 1; verification overall status recalculated: 1 (0 NoGos, 2 Gos of 9 requests, therefore overal GO)
2013-02-26 17:10:32carlosqtVote cast by carlosqt for Dark Nimbus Theme, UC 7.3, vote value: 1; verification overall status recalculated: 0 (0 NoGos, 1 Gos of 9 requests, therefore overal Undecided)
2013-02-07 05:26:58cengizcVote cast by cengizc for Dark Nimbus Theme, UC 7.2, vote value: 1; verification overall status recalculated: 1 (0 NoGos, 3 Gos of 9 requests, therefore overal GO)
2013-01-14 11:02:32saubrechtPlugin edited, id:46003, pubid:46003
2013-01-14 11:02:32saubrechtPlugin edit initiated
2013-01-11 17:03:02carlosqtVote cast by carlosqt for Dark Nimbus Theme, UC 7.2, vote value: 1; verification overall status recalculated: 1 (0 NoGos, 2 Gos of 9 requests, therefore overal GO)
2013-01-11 12:46:24ent38Vote cast by ent38 for Dark Nimbus Theme, UC 7.2, vote value: 1; verification overall status recalculated: 0 (0 NoGos, 1 Gos of 9 requests, therefore overal Undecided)
2013-01-11 12:33:06saubrechtVerification request registered for verifier senthilsource, with id: 46066
2013-01-11 12:33:06saubrechtVerification request registered for verifier scottwd9, with id: 46065
2013-01-11 12:33:06saubrechtVerification request registered for verifier mmirilovic, with id: 46064
2013-01-11 12:33:06saubrechtVerification request registered for verifier mcreps, with id: 46063
2013-01-11 12:33:05saubrechtVerification request registered for verifier jpirek, with id: 46062
2013-01-11 12:33:05saubrechtVerification request registered for verifier jkovalsky, with id: 46061
2013-01-11 12:33:05saubrechtVerification request registered for verifier ent38, with id: 46060
2013-01-11 12:33:05saubrechtVerification request registered for verifier cengizc, with id: 46059
2013-01-11 12:33:05saubrechtVerification request registered for verifier carlosqt, with id: 46058
2013-01-11 12:33:05saubrechtVerification registered for version 7.2, with id: 46057
2013-01-11 12:31:28saubrechtBinary successfully saved 1357925488_org-netbeans-modules-nimbus-theme.nbm, binary_id: 2427, version: 7.2
2013-01-11 12:31:28saubrechtBinary uploaded successfully - /space/pluginportal-v2/public/data/nbms/org-netbeans-modules-nimbus-theme.nbm
2013-01-11 12:31:28saubrechtUploading new binary for version 7.2
2013-01-11 12:22:37ent38Vote cast by ent38 for Dark Nimbus Theme, UC 7.2, vote value: -1; verification overall status recalculated: -1 (There is 1 NoGo casted threfore overal NoGo)
2013-01-11 05:02:56jkovalskyMASTER Go/NoGo casted for 7.3 verification by admin jkovalsky: Go
2013-01-11 05:02:29jkovalskyPlugin published
2013-01-11 03:26:59saubrechtPlugin edited, id:46003, pubid:46003
2013-01-11 03:26:59saubrechtPlugin edit initiated
2013-01-11 03:26:10saubrechtVerification request registered for verifier senthilsource, with id: 46050
2013-01-11 03:26:10saubrechtVerification request registered for verifier scottwd9, with id: 46049
2013-01-11 03:26:10saubrechtVerification request registered for verifier mmirilovic, with id: 46048
2013-01-11 03:26:10saubrechtVerification request registered for verifier mcreps, with id: 46047
2013-01-11 03:26:10saubrechtVerification request registered for verifier jpirek, with id: 46046
2013-01-11 03:26:10saubrechtVerification request registered for verifier jkovalsky, with id: 46045
2013-01-11 03:26:10saubrechtVerification request registered for verifier ent38, with id: 46044
2013-01-11 03:26:09saubrechtVerification request registered for verifier cengizc, with id: 46043
2013-01-11 03:26:07saubrechtVerification request registered for verifier carlosqt, with id: 46042
2013-01-11 03:26:07saubrechtVerification registered for version 7.3, with id: 46041
2013-01-11 03:25:57saubrechtBinary successfully saved 1357892757_org-netbeans-modules-nimbus-theme.nbm, binary_id: 2428, version: 7.3
2013-01-11 03:25:57saubrechtBinary uploaded successfully - /space/pluginportal-v2/public/data/nbms/org-netbeans-modules-nimbus-theme.nbm
2013-01-11 03:25:57saubrechtUploading new binary for version 7.3
2013-01-11 02:34:53saubrechtVerification request registered for verifier senthilsource, with id: 46040
2013-01-11 02:34:53saubrechtVerification request registered for verifier scottwd9, with id: 46039
2013-01-11 02:34:53saubrechtVerification request registered for verifier mmirilovic, with id: 46038
2013-01-11 02:34:53saubrechtVerification request registered for verifier mcreps, with id: 46037
2013-01-11 02:34:53saubrechtVerification request registered for verifier jpirek, with id: 46036
2013-01-11 02:34:53saubrechtVerification request registered for verifier jkovalsky, with id: 46035
2013-01-11 02:34:52saubrechtVerification request registered for verifier ent38, with id: 46034
2013-01-11 02:34:52saubrechtVerification request registered for verifier cengizc, with id: 46033
2013-01-11 02:34:52saubrechtVerification request registered for verifier carlosqt, with id: 46032
2013-01-11 02:34:52saubrechtVerification registered for version 7.2, with id: 46031
2013-01-11 02:34:39saubrechtBinary successfully saved 1357889679_org-netbeans-modules-nimbus-theme.nbm, binary_id: 2427, version: 7.2
2013-01-11 02:34:39saubrechtBinary uploaded successfully - /space/pluginportal-v2/public/data/nbms/org-netbeans-modules-nimbus-theme.nbm
2013-01-11 02:34:39saubrechtUploading new binary for version 7.2
2013-01-10 08:49:11saubrechtBinary successfully saved 1357825751_org-netbeans-modules-nimbus-theme.nbm, binary_id: 2425, version: 7.3
2013-01-10 08:49:11saubrechtBinary uploaded successfully - /space/pluginportal-v2/public/data/nbms/org-netbeans-modules-nimbus-theme.nbm
2013-01-10 08:49:11saubrechtUploading new binary for version 7.3
2013-01-10 05:33:21saubrechtPlugin saved with .nbm/zip file; id: 46003

Versions available

Download size: 0.02 MB Last Update: 2013-01-11

This plugin is also available on the NetBeans Plugin Portal Update Center. Use 'Tools > Plugins' action from the NetBeans IDE main menu for convenient installation of this plugin


What's new in this version


Verifications for NetBeans versions

7.3verification PASSEDSee verification details

Decisions of individual verifiers for Dark Nimbus Theme plugin for NetBeans IDE 7.2

GONOGOUNDECIDED
carlosqtjpirek
jkovalsky

Comments

carlosqt: Works on NB 7.2.1
Mac OSX 10.7.5
Java 1.7.0_09 64Bit

Decisions of individual verifiers for Dark Nimbus Theme plugin for NetBeans IDE 7.3

GONOGOUNDECIDED
carlosqt
jkovalsky
jpirek

Comments

carlosqt: Works on NB 7.3
Mac OSX 10.7.5
Java 1.7.0_15 64Bit
Download size: 0.02 MB Last Update: 2013-01-11

This plugin is also available on the NetBeans Plugin Portal Update Center. Use 'Tools > Plugins' action from the NetBeans IDE main menu for convenient installation of this plugin


What's new in this version


Verifications for NetBeans versions

7.2verification PASSEDSee verification details

Download and install xcode on mac. Decisions of individual verifiers for Dark Nimbus Theme plugin for NetBeans IDE 7.2

GONOGOUNDECIDED
carlosqtjpirek
jkovalsky

Comments

carlosqt: Works on NB 7.2.1
Mac OSX 10.7.5
Java 1.7.0_09 64Bit

Decisions of individual verifiers for Dark Nimbus Theme plugin for NetBeans IDE 7.3

GONOGOUNDECIDED
carlosqt
jkovalsky
jpirek

Comments

carlosqt: Works on NB 7.3
Mac OSX 10.7.5
Java 1.7.0_15 64Bit

Introduction

Dark theme for Nimbus Look and Feel. It goes well with 'Norway Today' editor color scheme.It does not affect other look and feel implementations so you must force Nimbus l&f, e.g. by using --laf Nimbus command line switch. To revert back to the default Nimbus theme you must uninstall this module, it is not enough to deactivate the module!
Sources are available in contrib/nimbus.theme module.
Please report any bugs under contrib/Nimbus Theme product/category.

[ You have to be logged in to be able to comment. ]

Dark Nimbus and Dark Metal Look and Feel in NetBeans

Dark Nimbus and Dark Metal Look and Feel in NetBeans
https://youtu.be/s-4dtrBTue0

breaks after 8.0.1

bubergeson, which version of netbeans are you running?
I noticed that in 8.0.2 the editor has a new themeing menu for some themes that come built-in, and they overrule the dark metal theme. Because of this I have kept my version of netbeans at 8.0.1 because I really love this theme.
I submitted a bug report here:
https://netbeans.org/bugzilla/show_bug.cgi?id=250058

Almost there

This is a nice theme but there are some bugs.
First, if you just install the theme but have some other theme selected like Nimbus, then when you are editing a Dialog, JFrame, or any other GUI component and select preview in Dark Nimbus the Editor window changes the Dark Theme which it should not.
Secondly, if I have this theme installed, because I like to use it for development and I want my RCP application built upon NetBeans to also have this theme available, but I want my RCP app to launch with just Nimbus as the default, I had to add the following code in my installer:
prefs.put('laf', 'javax.swing.plaf.nimbus.NimbusLookAndFeel');
try {
UIManager.setLookAndFeel('javax.swing.plaf.nimbus.NimbusLookAndFeel');
} catch (ClassNotFoundException InstantiationException IllegalAccessException UnsupportedLookAndFeelException ex) {
Exceptions.printStackTrace(ex);
}
The first line of code above was necessary since I am launching the app with a different theme then what NetBeans is running. If I just use the UIManager to set the look and feel but modify it to use the Dark Nimbus theme and then launch the app it acts as though it is not fully using it. Some of the icons will be white around them. Also, If I look in the Tools->Options->Appearance->Look And Feel I see that Dark Nimbus is not selected. If I select it and then relaunch the app then it works correctly. If I add the first line of code above then this issue seems to be fixed most of the time.
Thirdly, sometimes I will get errors when my app launches saying that it can't find my splash screen image. This doesn't occur when the Dark Nimbus theme is not being used with my app.
Fourth, it seems flakey. Sometimes my app will launch using Dark Metal. I can shut it down and relaunch it and it will then work correctly.
Fifth, the JTextPane component doesn't seem to set the background color correctly. I had to add the following for it to work correctly:
UIDefaults defaults = new UIDefaults();
defaults.put('TextPane[Enabled].backgroundPainter', c); // c is the color
putClientProperty('Nimbus.Overrides', defaults);
putClientProperty('Nimbus.Overrides.InheritDefaults', true);
Overall, I think this is a great theme but until it is less buggy/flakey I cannot deploy it with my applications. I wish it were added officially to the NetBeans distribution the same way that Nimbus has been added.

How to send patches?

How do I send patches?
I want to change the color of arrows in the JTree component. They are black, and invisible (almost) as such.
Kind regards

Mac-friendly version?

Like some of the others here, I'd like to a see a version of this that works correctly on Mac OS X. The main problem is that the native Mac menu bar disappears!

Absolute favorite theme!

Thanks so much for this theme. It is the best ever..

works on netbeans 8.0 !

favorit theme.

Pretty!

I like how it utilizes the versatility of the Nimbus LAF. I'll use this when programming at night!

Mac friendly version

I am also interested in a Mac friendly version like redgibson.
Also, I'm noticing that the output window on the Mac is not converted to dark.

Change look and feel (reverting back to default look)

In NetBeans 7.4 you can change the look and feel under
Options >> Miscellaneous >> Windows >> Look and Feel >> Preferred look and feel.

NetBeans 7.4

has a its own plugin providing dark themes, it's available from NetBeans update center.

Not work in Netbeans 7.4!

And it so strange that Netbeans have only one possibility to change the color of GUI.

Ubuntu Desktop advice

To make this work properly
Edit the Unity Desktop file located in:
~/.local/share/applications
or
/usr/share/applications
change the Exec line to read
Exec=/bin/sh '/home/user/netbeans-7.3.1/bin/netbeans' --laf Nimbus
remember to adjust the path point to your instalation of netbeans. IT should be set properly already so just add the --laf Nimbus outside of the quotes.

Latest nightly build still showing search results as black on black (or dark blue)

I'm using the latest nightly build (201306272300), and the search results window is still displaying black text on dark blue background. When you click on something, it does highlight the background as a lighter color, but if you have a huge list of results, it's not exactly efficient to have to click on each one to find what you're looking for.

7.3.1 - no theme selection drop-down

had the same issue as Deldadam.. no theme drop-down under
Tools > Options > Miscellaneous > Windows (tab)
I installed a nightly build : 2013-06-19_17-09-51 (can be found here: http://bits.netbeans.org/dev/nightly/)
the theme looks great and works well!
thanks!

Perfect

In nightly build 201306191709 seems perfect. Many thanks to devs.

How to install/Unintall

I tried to install it, nothing worked, but now I can't seem to uninstall it.
It tells me its installed, but I cannot seem to remove it.

How to switch to the built-in theme

I'm trying to figure out how to switch on the theme in NB 7.3.1. Everybody is referring to 'Tools - Options - Windows' to find the option, but I don't have such. I've got only 'Tools -> Options -> Misc. (panel) -> Windows (sub-panel)', but there is nothing that would allow me to use this theme.
I'm on Win. 7 64-bit.
AFAIK this theme is included in NB 7.3.1, and I don't need to use the plugin from here. Am I supposed to know this differently?
Cheers,
DelD.

bug 7.3

When u are opening a new file
the new file window letters turns black
if u move ur scroll on the rigth window

Working well on Suse 12.3

Added the plugin in Netbeans, it wants to restart, after restart doesn't work yet, but as described in the introduction, I edited
/usr/local/netbeans-7.3/etc/netbeans.conf
netbeans_default_options=' --laf Nimbus'
Then it works.

Re: Not Working

navets, massiws: you need to switch to Nimbus look and feel. Try running the IDE with --laf Nimbus command line switch.

Not Working on fedora

Nothing changes in the background. But the text turned white in white background making it unreadable.
Have to uninstall and delete all netbeans folder to fix this.

Not working on Linux Mint/openSuse

Installed on Linux Mint/Cinnamon/Mate and Linux OpenSuse/Gnome/KDE: I can't see any difference.
File and directory names in Project and Navigator windows (on the left) are visible only if selected (font and background colors are white).
Is there a workaround to make it works?
Disable (without uninstall) the plugin the style return to standard settings.

sublime

>>> would be cool to create a theme like the monokay (sublime)
http://netbeansthemes.com/monokai/

Re: Problems

Everybody, try the latest dev builds, it has much better support for dark color themes.

Same problem on the auto completion popup

I'm using nighty version and I've the same problem as centai. The auto completion popup with methods & objects (at least with PHP) is dark blue on black.

Nice theme but problems with dropdown

I am using this theme for NetBeans 7.3. It looks good, but the dropdown of NetBeans which lists members and methods of an object is just not readable (black font, dark blue background).
I did not find any way to change this.
Is it possible to fix this next version?

Not working on Fedora

As someone already pointed out, this is not properly working on Fedora. In my case, I installed the plugin and saw no difference at all, regardless Look and Feel settings.
Am I missing something?

re: Revert back to the default Nimbus theme

Deldadam: there will be problems when you switch to other look and feel than Nimbus

Revert back to the default Nimbus theme

You say in the introduction: 'To revert back to the default Nimbus theme you must uninstall this module, it is not enough to deactivate the module!'
Well, I'm only deactivating the module, and it reverts back to the default Nimbus theme succesfully - at least on my Win 7 Prof. machine.
Regards,
DelD.

Dark Nimbus

redgibson: Good point, please file an RFE for it in NetBeans bugzilla, thanks.
Rafaelll: Try latest dev build instead of this plugin.

Does Not Work on Linux Mint

I installed the plugin in my NetBeans 7.3 but it did not work as expected (only the editor tab got a little darker).
Does this work on Linux Mint 13 (my OS) ?

Mac friendly version?

Hi I am using netbeans 7.3 on OS X 10.8.2, this pretty much hijacks all the normal menu operations into the application window in an X11 style.. perhaps theres a way to have this keep the menus in a natively managed format? Other than that I very much like the dark theme.

Latest dev builds

kevin39: Please report it as a bug, thanks.

I'm using 7.3 build 201302252300

@saubrecht thank your for your fast reply. I'm using 7.3 build 201302252300 and same problem..

Latest dev builds

kevin39: You need latest trunk build and switch the look and feel in menu Tools - Options - Windows, NetBeans versions 7.2 and 7.3 have some bugs when using dark color theme.

Perfect but 1 (big) problem for me..

Your plugin is excellent but my search results are dark blue on black.. So it's unreadable !
How to improve it ?
PS : I'm using the last build but same problem on last stable 7.2

Latest dev builds

Everybody, try the latest nightly builds. There are many bugs fixes and even a combo box to switch the current look and feel and/or theme in Tools - Options - Miscellaneous - Windows

Not working on fedora 17


I've installed this plugin on newly released 7.3.
Saidly enough it had same problems as leagurb described.

Nice colors with side effects

I liked the colors, but then decided to go back to the standard ones. The plug-in left some drop-down menus wacky.

..and 'dark black' colors are even less visible on dark background

Open Tools -> Options -> Keymap. Try to read the content of 'Shortcut' column :)
Anyway it is really nice theme, although a little bit 'space consuming' 'cos the Nimbus LaF.
Ciao,
DelD.

Dark blue colors are less visible on dark background

The theme is nice, but I suggest to replace the dark Blue colors on dark background (javadoc tags, html tags in javadoc comments, file names highlighted due to versioning status) with some kind of a light blue color, such as Cyan.

Nice

Nice theme.
Thank you for that <3

Sublime

would be cool to create a theme like the monokay (sublime)

Dark icons needed

Thanks, this is very cool !!!
I think to be really useful most of the icons would need to change to better fit into the dark theme.

Source files

are available in contrib repository in 'nimbus.theme' module. Patches and tweaks are welcome.