Advertisement
SaberAkiyama

gC Suite Variables Halloween

Oct 26th, 2021
1,339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 2.25 KB | None | 0 0
  1. [Variables]
  2.  
  3. ;Width and height for meters. Defaults: 80, 80.
  4. Width=90
  5. Height=#Width#
  6.  
  7. ;Inner and outer radius of meters. Defaults: 32, 25.
  8. ;With default setting the meter is 64x64 and has 8px margins (80px-64px=2*8px).
  9. MeterOuter=45
  10. MeterInner=37
  11.  
  12. ;Font to be used. "Familiar Pro" looks nice, but license doesn't allow me to include it.
  13. ;Download Familiar Pro for free: http://www.dafont.com/familiar-pro.font
  14. ;Defaults: Arial, 9.
  15. FontFace="Borda 10"
  16. FontSize=12
  17.  
  18. ;Settings for single meters and quad meters: height of a text label, horizontal position
  19. ;(usually half of width) and vertical position of the top label. To move the bottom label
  20. ;lower, increase the label height. Defaults: 11, 40, 28. For Familiar Pro use LabelY=27.
  21. LabelHeight=15
  22. LabelX=45
  23. LabelY=30
  24.  
  25. ;Settings for dual meters: font size, label height and vertical position of the top label.
  26. ;Defaults: 8, 9, 26. For FamiliarPro use LabelYDual=25
  27. FontSizeDual=10
  28. LabelHeightDual=18
  29. LabelYDual=22
  30.  
  31. ;Settings for the Clock: font size, label height and vertical position of the top label.
  32. ;Defaults: 13, 15, 23. For Familiar Pro use LabelYClock=22
  33. FontSizeClock=13
  34. LabelHeightClock=15
  35. LabelYClock=23
  36.  
  37. ;Settings for the Big Clock.
  38. ;Defaults: 160, 160, 64, 50, 28, 32, 82, 43.
  39. ;For Familiar Pro use BigLabelY=41
  40. BigWidth=160
  41. BigHeight=#BigWidth#
  42. BigMeterInner=64
  43. BigMeterWidth=50
  44. BigFontSize=28
  45. BigLabelHeight=32
  46. BigLabelX=82                                                      
  47. BigLabelY=43
  48.  
  49. ;Settings for Sidebar: color, aero blur (0/1), width, height.
  50. ;Defaults: [0, 0, 0], 0, #Width#, #WORKAREAHEIGHT# (your screen's height).
  51. SidebarColor=0, 0, 0
  52. SidebarBlur=0
  53. SidebarWidth=#Width#
  54. SidebarHeight=#WORKAREAHEIGHT#
  55.  
  56. ;Colors for meters: actual meter's color, background color, label color, value text's color.
  57. ;Defaults: [255, 255, 255], [255, 255, 255, 64], [255, 255, 255, 192], [255, 255, 255, 192].
  58. ColorMeter=255,104,1,255
  59. ColorBG=255,104,1,64
  60. ColorLabel=255,255,255,255
  61. ColorValue=255,255,255,255
  62.  
  63. ;Your Internet connection's download/upload speed in bits per second.
  64. ;Leave zeros for "smart" meters that use the biggest encountered speeds as NetDL/UL.
  65. ;Defaults: 0, 0.
  66. NetDL=0
  67. NetUL=0
  68.  
  69. ;Drives to monitor for Drive meters. Defaults: C:, D:
  70. Drive1=C:
  71. Drive2=D:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement