MemoryUsage.props 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Properties file for customizing the memory usage panel.
  2. #
  3. # author: FracPete (fracpete at waikato dot ac dot nz)
  4. # version: $Revision: 8034 $
  5. # The dimensions of the dialog, width and height.
  6. Width=400
  7. # Uncomment the following property if you don't want the height to be based on
  8. # the height of the "garbage collector" button.
  9. #Height=20
  10. # The position of the frame. If at least one equals "-1", then the position
  11. # will be ignored.
  12. Left=-1
  13. Top=-1
  14. # The background color for the graph.
  15. BackgroundColor=white
  16. # The refresh interval in milliseconds
  17. Interval=1000
  18. # The percentage thresholds at which to change color. comma-separated list.
  19. # Percentages listed here must have a corresponding color entry, i.e.,
  20. # if "70" is in the list, then an entry like "70=somecolor" must be listed in
  21. # the properties file as well.
  22. Percentages=70,80,90
  23. # The default color, i.e., the color for memory usage below the smallest
  24. # threshold listed in "Percentages".
  25. DefaultColor=green
  26. # The colors for the thresholds (can use R,G,B format)
  27. 70=yellow
  28. 80=orange
  29. 90=red