diff options
| author | Adam | 2014-06-03 14:31:27 -0700 |
|---|---|---|
| committer | Jack Nagel | 2014-06-03 20:03:19 -0500 |
| commit | 04eb35a424604a930339b63e6ff94d58fa37f87e (patch) | |
| tree | 3bbdd21d3c6e0f7c6450d7a2498e0ebb6e87720e /Library/Formula | |
| parent | 9e2508cdb247f586a3d8944ed73c647b6a9756c0 (diff) | |
| download | homebrew-04eb35a424604a930339b63e6ff94d58fa37f87e.tar.bz2 | |
Hide zookeeper java process from the Dock
setting `SERVER_JVMFLAGS` to `-Dapple.awt.UIElement=true` will prevent the java process from showing up in the Dock.
Closes #29835.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/zookeeper.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/zookeeper.rb b/Library/Formula/zookeeper.rb index 8e03041b4..6a2558aa9 100644 --- a/Library/Formula/zookeeper.rb +++ b/Library/Formula/zookeeper.rb @@ -134,6 +134,11 @@ class Zookeeper < Formula <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> + <key>EnvironmentVariables</key> + <dict> + <key>SERVER_JVMFLAGS</key> + <string>-Dapple.awt.UIElement=true</string> + </dict> <key>KeepAlive</key> <dict> <key>SuccessfulExit</key> |
