Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. [Rainmeter]
  2. Update = 1000
  3.  
  4. [Indicator]
  5. Meter = String
  6. UpdateDivider = -1
  7. SolidColor = 00000001
  8. AntiAlias = 1
  9. Text = [FileCount] File(s)#CRLF#[FileSizeMB:] MB
  10. DynamicVariables = 1
  11.  
  12. [FileCount]
  13. Measure = Plugin
  14. Plugin = RecycleManager
  15. RecycleType = Count
  16. OnChangeAction = [!UpdateMeter "Indicator" "#CURRENTCONFIG#"] [!Redraw "#CURRENTCONFIG#"]
  17.  
  18. [FileSize]
  19. Measure = Plugin
  20. Plugin = RecycleManager
  21. RecycleType = Size
  22. OnChangeAction = [!UpdateMeasure "FileSizeMB" "#CURRENTCONFIG#"]
  23.  
  24. [FileSizeMB]
  25. Measure = Calc
  26. Formula = round([FileSize:] / 1024 / 1024)
  27. DynamicVariables = 1
  28. OnChangeAction = [!UpdateMeter "Indicator" "#CURRENTCONFIG#"] [!Redraw "#CURRENTCONFIG#"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement