├── @Resources ├── Blocks.inc ├── CPU.png ├── Calendar.lua ├── GPU.png ├── MeasureBands.inc ├── MeterBands.inc ├── NET.png ├── RAM.png └── SSD.png ├── Calendar └── Calendar.ini ├── Clock ├── Clock1.ini ├── Clock2.ini └── Clock3.ini ├── HWMonitor └── HWMonitor.ini ├── LICENSE ├── README.md ├── System └── System.ini └── Visualizer.ini /@Resources/CPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meti0X7CB/SystemFetch/faa4f59682651d5ce79c2098461c5d2c550bad36/@Resources/CPU.png -------------------------------------------------------------------------------- /@Resources/Calendar.lua: -------------------------------------------------------------------------------- 1 | function Initialize() 2 | local currentYear = tonumber(os.date("%Y")) 3 | local currentMonth = tonumber(os.date("%m")) 4 | local startDay = tonumber(os.date("*t", os.time{year=currentYear, month=currentMonth, day=1})["wday"]) 5 | local totalDays = os.date("*t", os.time{year=currentYear, month=currentMonth + 1, day=0})["day"] 6 | local prevMonthDays = os.date("*t", os.time{year=currentYear, month=currentMonth, day=0})["day"] 7 | 8 | GenerateDays(startDay, totalDays, prevMonthDays) 9 | end 10 | 11 | function GenerateDays(startDay, totalDays, prevMonthDays) 12 | local daysTable = {} 13 | local currentDay = tonumber(os.date("%d")) 14 | 15 | local scale = tonumber(SKIN:GetVariable("Scale", 1)) 16 | -- Dimensions of a single day cell 17 | local cellWidth = (38.2 * scale) 18 | local cellHeight = (31.2 * scale) 19 | 20 | -- Fill in days from the previous month 21 | local prevDaysToShow = startDay - 1 22 | for i = 1, prevDaysToShow do 23 | daysTable[i] = string.format(" %2d ", prevMonthDays - prevDaysToShow + i) 24 | end 25 | 26 | -- Fill in the days of the current month 27 | for day = 1, totalDays do 28 | local index = startDay + day - 2 29 | daysTable[index + 1] = string.format(" %2d ", day) 30 | 31 | -- Highlight the current day 32 | if day == currentDay then 33 | local row = math.floor(index / 7) 34 | local column = index % 7 35 | 36 | -- Calculate x and y positions 37 | local x = column * cellWidth 38 | local y = row * cellHeight 39 | 40 | SKIN:Bang("!SetVariable", "MeasureCurrentDayX", x) 41 | SKIN:Bang("!SetVariable", "MeasureCurrentDayY", y) 42 | end 43 | end 44 | 45 | -- Fill in days from the next month 46 | local nextDaysToShow = 42 - (#daysTable) 47 | for i = 1, nextDaysToShow do 48 | table.insert(daysTable, string.format(" %2d ", i)) 49 | end 50 | 51 | -- Build the days text for display 52 | local DaysText = "" 53 | for i = 1, #daysTable do 54 | DaysText = DaysText .. daysTable[i] 55 | if i % 7 == 0 then 56 | DaysText = DaysText .. "\n" 57 | end 58 | end 59 | 60 | -- Clean up the daysText 61 | DaysText = DaysText:gsub("\n%s+\n", "\n"):gsub("[ \n]+$", "") 62 | 63 | -- Set the final days text variable 64 | SKIN:Bang("!SetVariable", "DaysText", DaysText) 65 | end 66 | -------------------------------------------------------------------------------- /@Resources/GPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meti0X7CB/SystemFetch/faa4f59682651d5ce79c2098461c5d2c550bad36/@Resources/GPU.png -------------------------------------------------------------------------------- /@Resources/MeasureBands.inc: -------------------------------------------------------------------------------- 1 | [MeasureAudio] 2 | Measure = Plugin 3 | Plugin = AudioLevel 4 | Port = Output 5 | FFTSize = 2048 6 | FFTAttack = 75 7 | FFTDecay = 150 8 | Sensitivity = 40 9 | Bands = 25 10 | 11 | [MeasureBand0] 12 | Measure = Plugin 13 | Plugin = AudioLevel 14 | Parent = MeasureAudio 15 | Type = Band 16 | BandIdx = 0 17 | 18 | [MeasureBand1] 19 | Measure = Plugin 20 | Plugin = AudioLevel 21 | Parent = MeasureAudio 22 | Type = Band 23 | BandIdx = 1 24 | 25 | [MeasureBand2] 26 | Measure = Plugin 27 | Plugin = AudioLevel 28 | Parent = MeasureAudio 29 | Type = Band 30 | BandIdx = 2 31 | 32 | [MeasureBand3] 33 | Measure = Plugin 34 | Plugin = AudioLevel 35 | Parent = MeasureAudio 36 | Type = Band 37 | BandIdx = 3 38 | 39 | [MeasureBand4] 40 | Measure = Plugin 41 | Plugin = AudioLevel 42 | Parent = MeasureAudio 43 | Type = Band 44 | BandIdx = 4 45 | 46 | [MeasureBand5] 47 | Measure = Plugin 48 | Plugin = AudioLevel 49 | Parent = MeasureAudio 50 | Type = Band 51 | BandIdx = 5 52 | 53 | [MeasureBand6] 54 | Measure = Plugin 55 | Plugin = AudioLevel 56 | Parent = MeasureAudio 57 | Type = Band 58 | BandIdx = 6 59 | 60 | [MeasureBand7] 61 | Measure = Plugin 62 | Plugin = AudioLevel 63 | Parent = MeasureAudio 64 | Type = Band 65 | BandIdx = 7 66 | 67 | [MeasureBand8] 68 | Measure = Plugin 69 | Plugin = AudioLevel 70 | Parent = MeasureAudio 71 | Type = Band 72 | BandIdx = 8 73 | 74 | [MeasureBand9] 75 | Measure = Plugin 76 | Plugin = AudioLevel 77 | Parent = MeasureAudio 78 | Type = Band 79 | BandIdx = 9 80 | 81 | [MeasureBand10] 82 | Measure = Plugin 83 | Plugin = AudioLevel 84 | Parent = MeasureAudio 85 | Type = Band 86 | BandIdx = 10 87 | 88 | [MeasureBand11] 89 | Measure = Plugin 90 | Plugin = AudioLevel 91 | Parent = MeasureAudio 92 | Type = Band 93 | BandIdx = 11 94 | 95 | [MeasureBand12] 96 | Measure = Plugin 97 | Plugin = AudioLevel 98 | Parent = MeasureAudio 99 | Type = Band 100 | BandIdx = 12 101 | 102 | [MeasureBand13] 103 | Measure = Plugin 104 | Plugin = AudioLevel 105 | Parent = MeasureAudio 106 | Type = Band 107 | BandIdx = 13 108 | 109 | [MeasureBand14] 110 | Measure = Plugin 111 | Plugin = AudioLevel 112 | Parent = MeasureAudio 113 | Type = Band 114 | BandIdx = 14 115 | 116 | [MeasureBand15] 117 | Measure = Plugin 118 | Plugin = AudioLevel 119 | Parent = MeasureAudio 120 | Type = Band 121 | BandIdx = 15 122 | 123 | [MeasureBand16] 124 | Measure = Plugin 125 | Plugin = AudioLevel 126 | Parent = MeasureAudio 127 | Type = Band 128 | BandIdx = 16 129 | 130 | [MeasureBand17] 131 | Measure = Plugin 132 | Plugin = AudioLevel 133 | Parent = MeasureAudio 134 | Type = Band 135 | BandIdx = 17 136 | 137 | [MeasureBand18] 138 | Measure = Plugin 139 | Plugin = AudioLevel 140 | Parent = MeasureAudio 141 | Type = Band 142 | BandIdx = 18 143 | 144 | [MeasureBand19] 145 | Measure = Plugin 146 | Plugin = AudioLevel 147 | Parent = MeasureAudio 148 | Type = Band 149 | BandIdx = 19 150 | 151 | [MeasureBand20] 152 | Measure = Plugin 153 | Plugin = AudioLevel 154 | Parent = MeasureAudio 155 | Type = Band 156 | BandIdx = 20 157 | 158 | [MeasureBand21] 159 | Measure = Plugin 160 | Plugin = AudioLevel 161 | Parent = MeasureAudio 162 | Type = Band 163 | BandIdx = 21 164 | 165 | [MeasureBand22] 166 | Measure = Plugin 167 | Plugin = AudioLevel 168 | Parent = MeasureAudio 169 | Type = Band 170 | BandIdx = 22 171 | 172 | [MeasureBand23] 173 | Measure = Plugin 174 | Plugin = AudioLevel 175 | Parent = MeasureAudio 176 | Type = Band 177 | BandIdx = 23 178 | 179 | [MeasureBand24] 180 | Measure = Plugin 181 | Plugin = AudioLevel 182 | Parent = MeasureAudio 183 | Type = Band 184 | BandIdx = 24 -------------------------------------------------------------------------------- /@Resources/MeterBands.inc: -------------------------------------------------------------------------------- 1 | [MeterBands] 2 | Meter = Shape 3 | Shape = Rectangle ((11+(12*0))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_1Color# | StrokeWidth 0 4 | Shape2 = Rectangle ((11+(12*0))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_2Color# | StrokeWidth 0 5 | Shape3 = Rectangle ((11+(12*0))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_3Color# | StrokeWidth 0 6 | Shape4 = Rectangle ((11+(12*0))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_4Color# | StrokeWidth 0 7 | Shape5 = Rectangle ((11+(12*0))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_5Color# | StrokeWidth 0 8 | Shape6 = Rectangle ((11+(12*0))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_6Color# | StrokeWidth 0 9 | Shape7 = Rectangle ((11+(12*0))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_7Color# | StrokeWidth 0 10 | Shape8 = Rectangle ((11+(12*0))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_8Color# | StrokeWidth 0 11 | Shape9 = Rectangle ((11+(12*0))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_9Color# | StrokeWidth 0 12 | Shape10 = Rectangle ((11+(12*0))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block1_10Color# | StrokeWidth 0 13 | Shape11 = Rectangle ((11+(12*1))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_1Color# | StrokeWidth 0 14 | Shape12 = Rectangle ((11+(12*1))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_2Color# | StrokeWidth 0 15 | Shape13 = Rectangle ((11+(12*1))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_3Color# | StrokeWidth 0 16 | Shape14 = Rectangle ((11+(12*1))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_4Color# | StrokeWidth 0 17 | Shape15 = Rectangle ((11+(12*1))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_5Color# | StrokeWidth 0 18 | Shape16 = Rectangle ((11+(12*1))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_6Color# | StrokeWidth 0 19 | Shape17 = Rectangle ((11+(12*1))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_7Color# | StrokeWidth 0 20 | Shape18 = Rectangle ((11+(12*1))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_8Color# | StrokeWidth 0 21 | Shape19 = Rectangle ((11+(12*1))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_9Color# | StrokeWidth 0 22 | Shape20 = Rectangle ((11+(12*1))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block2_10Color# | StrokeWidth 0 23 | Shape21 = Rectangle ((11+(12*2))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_1Color# | StrokeWidth 0 24 | Shape22 = Rectangle ((11+(12*2))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_2Color# | StrokeWidth 0 25 | Shape23 = Rectangle ((11+(12*2))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_3Color# | StrokeWidth 0 26 | Shape24 = Rectangle ((11+(12*2))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_4Color# | StrokeWidth 0 27 | Shape25 = Rectangle ((11+(12*2))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_5Color# | StrokeWidth 0 28 | Shape26 = Rectangle ((11+(12*2))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_6Color# | StrokeWidth 0 29 | Shape27 = Rectangle ((11+(12*2))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_7Color# | StrokeWidth 0 30 | Shape28 = Rectangle ((11+(12*2))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_8Color# | StrokeWidth 0 31 | Shape29 = Rectangle ((11+(12*2))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_9Color# | StrokeWidth 0 32 | Shape30 = Rectangle ((11+(12*2))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block3_10Color# | StrokeWidth 0 33 | Shape31 = Rectangle ((11+(12*3))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_1Color# | StrokeWidth 0 34 | Shape32 = Rectangle ((11+(12*3))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_2Color# | StrokeWidth 0 35 | Shape33 = Rectangle ((11+(12*3))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_3Color# | StrokeWidth 0 36 | Shape34 = Rectangle ((11+(12*3))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_4Color# | StrokeWidth 0 37 | Shape35 = Rectangle ((11+(12*3))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_5Color# | StrokeWidth 0 38 | Shape36 = Rectangle ((11+(12*3))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_6Color# | StrokeWidth 0 39 | Shape37 = Rectangle ((11+(12*3))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_7Color# | StrokeWidth 0 40 | Shape38 = Rectangle ((11+(12*3))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_8Color# | StrokeWidth 0 41 | Shape39 = Rectangle ((11+(12*3))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_9Color# | StrokeWidth 0 42 | Shape40 = Rectangle ((11+(12*3))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block4_10Color# | StrokeWidth 0 43 | Shape41 = Rectangle ((11+(12*4))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_1Color# | StrokeWidth 0 44 | Shape42 = Rectangle ((11+(12*4))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_2Color# | StrokeWidth 0 45 | Shape43 = Rectangle ((11+(12*4))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_3Color# | StrokeWidth 0 46 | Shape44 = Rectangle ((11+(12*4))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_4Color# | StrokeWidth 0 47 | Shape45 = Rectangle ((11+(12*4))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_5Color# | StrokeWidth 0 48 | Shape46 = Rectangle ((11+(12*4))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_6Color# | StrokeWidth 0 49 | Shape47 = Rectangle ((11+(12*4))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_7Color# | StrokeWidth 0 50 | Shape48 = Rectangle ((11+(12*4))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_8Color# | StrokeWidth 0 51 | Shape49 = Rectangle ((11+(12*4))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_9Color# | StrokeWidth 0 52 | Shape50 = Rectangle ((11+(12*4))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block5_10Color# | StrokeWidth 0 53 | Shape51 = Rectangle ((11+(12*5))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_1Color# | StrokeWidth 0 54 | Shape52 = Rectangle ((11+(12*5))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_2Color# | StrokeWidth 0 55 | Shape53 = Rectangle ((11+(12*5))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_3Color# | StrokeWidth 0 56 | Shape54 = Rectangle ((11+(12*5))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_4Color# | StrokeWidth 0 57 | Shape55 = Rectangle ((11+(12*5))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_5Color# | StrokeWidth 0 58 | Shape56 = Rectangle ((11+(12*5))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_6Color# | StrokeWidth 0 59 | Shape57 = Rectangle ((11+(12*5))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_7Color# | StrokeWidth 0 60 | Shape58 = Rectangle ((11+(12*5))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_8Color# | StrokeWidth 0 61 | Shape59 = Rectangle ((11+(12*5))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_9Color# | StrokeWidth 0 62 | Shape60 = Rectangle ((11+(12*5))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block6_10Color# | StrokeWidth 0 63 | Shape61 = Rectangle ((11+(12*6))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_1Color# | StrokeWidth 0 64 | Shape62 = Rectangle ((11+(12*6))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_2Color# | StrokeWidth 0 65 | Shape63 = Rectangle ((11+(12*6))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_3Color# | StrokeWidth 0 66 | Shape64 = Rectangle ((11+(12*6))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_4Color# | StrokeWidth 0 67 | Shape65 = Rectangle ((11+(12*6))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_5Color# | StrokeWidth 0 68 | Shape66 = Rectangle ((11+(12*6))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_6Color# | StrokeWidth 0 69 | Shape67 = Rectangle ((11+(12*6))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_7Color# | StrokeWidth 0 70 | Shape68 = Rectangle ((11+(12*6))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_8Color# | StrokeWidth 0 71 | Shape69 = Rectangle ((11+(12*6))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_9Color# | StrokeWidth 0 72 | Shape70 = Rectangle ((11+(12*6))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block7_10Color# | StrokeWidth 0 73 | Shape71 = Rectangle ((11+(12*7))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_1Color# | StrokeWidth 0 74 | Shape72 = Rectangle ((11+(12*7))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_2Color# | StrokeWidth 0 75 | Shape73 = Rectangle ((11+(12*7))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_3Color# | StrokeWidth 0 76 | Shape74 = Rectangle ((11+(12*7))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_4Color# | StrokeWidth 0 77 | Shape75 = Rectangle ((11+(12*7))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_5Color# | StrokeWidth 0 78 | Shape76 = Rectangle ((11+(12*7))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_6Color# | StrokeWidth 0 79 | Shape77 = Rectangle ((11+(12*7))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_7Color# | StrokeWidth 0 80 | Shape78 = Rectangle ((11+(12*7))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_8Color# | StrokeWidth 0 81 | Shape79 = Rectangle ((11+(12*7))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_9Color# | StrokeWidth 0 82 | Shape80 = Rectangle ((11+(12*7))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block8_10Color# | StrokeWidth 0 83 | Shape81 = Rectangle ((11+(12*8))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_1Color# | StrokeWidth 0 84 | Shape82 = Rectangle ((11+(12*8))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_2Color# | StrokeWidth 0 85 | Shape83 = Rectangle ((11+(12*8))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_3Color# | StrokeWidth 0 86 | Shape84 = Rectangle ((11+(12*8))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_4Color# | StrokeWidth 0 87 | Shape85 = Rectangle ((11+(12*8))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_5Color# | StrokeWidth 0 88 | Shape86 = Rectangle ((11+(12*8))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_6Color# | StrokeWidth 0 89 | Shape87 = Rectangle ((11+(12*8))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_7Color# | StrokeWidth 0 90 | Shape88 = Rectangle ((11+(12*8))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_8Color# | StrokeWidth 0 91 | Shape89 = Rectangle ((11+(12*8))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_9Color# | StrokeWidth 0 92 | Shape90 = Rectangle ((11+(12*8))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block9_10Color# | StrokeWidth 0 93 | Shape91 = Rectangle ((11+(12*9))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_1Color# | StrokeWidth 0 94 | Shape92 = Rectangle ((11+(12*9))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_2Color# | StrokeWidth 0 95 | Shape93 = Rectangle ((11+(12*9))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_3Color# | StrokeWidth 0 96 | Shape94 = Rectangle ((11+(12*9))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_4Color# | StrokeWidth 0 97 | Shape95 = Rectangle ((11+(12*9))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_5Color# | StrokeWidth 0 98 | Shape96 = Rectangle ((11+(12*9))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_6Color# | StrokeWidth 0 99 | Shape97 = Rectangle ((11+(12*9))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_7Color# | StrokeWidth 0 100 | Shape98 = Rectangle ((11+(12*9))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_8Color# | StrokeWidth 0 101 | Shape99 = Rectangle ((11+(12*9))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_9Color# | StrokeWidth 0 102 | Shape100 = Rectangle ((11+(12*9))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block10_10Color# | StrokeWidth 0 103 | Shape101 = Rectangle ((11+(12*10))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_1Color# | StrokeWidth 0 104 | Shape102 = Rectangle ((11+(12*10))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_2Color# | StrokeWidth 0 105 | Shape103 = Rectangle ((11+(12*10))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_3Color# | StrokeWidth 0 106 | Shape104 = Rectangle ((11+(12*10))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_4Color# | StrokeWidth 0 107 | Shape105 = Rectangle ((11+(12*10))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_5Color# | StrokeWidth 0 108 | Shape106 = Rectangle ((11+(12*10))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_6Color# | StrokeWidth 0 109 | Shape107 = Rectangle ((11+(12*10))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_7Color# | StrokeWidth 0 110 | Shape108 = Rectangle ((11+(12*10))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_8Color# | StrokeWidth 0 111 | Shape109 = Rectangle ((11+(12*10))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_9Color# | StrokeWidth 0 112 | Shape110 = Rectangle ((11+(12*10))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block11_10Color# | StrokeWidth 0 113 | Shape111 = Rectangle ((11+(12*11))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_1Color# | StrokeWidth 0 114 | Shape112 = Rectangle ((11+(12*11))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_2Color# | StrokeWidth 0 115 | Shape113 = Rectangle ((11+(12*11))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_3Color# | StrokeWidth 0 116 | Shape114 = Rectangle ((11+(12*11))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_4Color# | StrokeWidth 0 117 | Shape115 = Rectangle ((11+(12*11))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_5Color# | StrokeWidth 0 118 | Shape116 = Rectangle ((11+(12*11))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | Fill Color #Block12_6Color# | StrokeWidth 0 119 | Shape117 = Rectangle ((11+(12*11))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block12_7Color# | StrokeWidth 0 120 | Shape118 = Rectangle ((11+(12*11))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block12_8Color# | StrokeWidth 0 121 | Shape119 = Rectangle ((11+(12*11))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block12_9Color# | StrokeWidth 0 122 | Shape120 = Rectangle ((11+(12*11))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block12_10Color# | StrokeWidth 0 123 | Shape121 = Rectangle ((11+(12*12))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_1Color# | StrokeWidth 0 124 | Shape122 = Rectangle ((11+(12*12))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_2Color# | StrokeWidth 0 125 | Shape123 = Rectangle ((11+(12*12))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_3Color# | StrokeWidth 0 126 | Shape124 = Rectangle ((11+(12*12))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_4Color# | StrokeWidth 0 127 | Shape125 = Rectangle ((11+(12*12))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_5Color# | StrokeWidth 0 128 | Shape126 = Rectangle ((11+(12*12))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_6Color# | StrokeWidth 0 129 | Shape127 = Rectangle ((11+(12*12))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_7Color# | StrokeWidth 0 130 | Shape128 = Rectangle ((11+(12*12))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_8Color# | StrokeWidth 0 131 | Shape129 = Rectangle ((11+(12*12))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_9Color# | StrokeWidth 0 132 | Shape130 = Rectangle ((11+(12*12))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block13_10Color# | StrokeWidth 0 133 | Shape131 = Rectangle ((11+(12*13))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_1Color# | StrokeWidth 0 134 | Shape132 = Rectangle ((11+(12*13))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_2Color# | StrokeWidth 0 135 | Shape133 = Rectangle ((11+(12*13))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_3Color# | StrokeWidth 0 136 | Shape134 = Rectangle ((11+(12*13))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_4Color# | StrokeWidth 0 137 | Shape135 = Rectangle ((11+(12*13))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_5Color# | StrokeWidth 0 138 | Shape136 = Rectangle ((11+(12*13))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_6Color# | StrokeWidth 0 139 | Shape137 = Rectangle ((11+(12*13))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_7Color# | StrokeWidth 0 140 | Shape138 = Rectangle ((11+(12*13))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_8Color# | StrokeWidth 0 141 | Shape139 = Rectangle ((11+(12*13))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_9Color# | StrokeWidth 0 142 | Shape140 = Rectangle ((11+(12*13))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block14_10Color# | StrokeWidth 0 143 | Shape141 = Rectangle ((11+(12*14))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_1Color# | StrokeWidth 0 144 | Shape142 = Rectangle ((11+(12*14))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_2Color# | StrokeWidth 0 145 | Shape143 = Rectangle ((11+(12*14))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_3Color# | StrokeWidth 0 146 | Shape144 = Rectangle ((11+(12*14))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_4Color# | StrokeWidth 0 147 | Shape145 = Rectangle ((11+(12*14))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_5Color# | StrokeWidth 0 148 | Shape146 = Rectangle ((11+(12*14))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_6Color# | StrokeWidth 0 149 | Shape147 = Rectangle ((11+(12*14))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_7Color# | StrokeWidth 0 150 | Shape148 = Rectangle ((11+(12*14))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_8Color# | StrokeWidth 0 151 | Shape149 = Rectangle ((11+(12*14))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_9Color# | StrokeWidth 0 152 | Shape150 = Rectangle ((11+(12*14))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block15_10Color# | StrokeWidth 0 153 | Shape151 = Rectangle ((11+(12*15))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_1Color# | StrokeWidth 0 154 | Shape152 = Rectangle ((11+(12*15))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_2Color# | StrokeWidth 0 155 | Shape153 = Rectangle ((11+(12*15))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_3Color# | StrokeWidth 0 156 | Shape154 = Rectangle ((11+(12*15))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_4Color# | StrokeWidth 0 157 | Shape155 = Rectangle ((11+(12*15))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_5Color# | StrokeWidth 0 158 | Shape156 = Rectangle ((11+(12*15))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_6Color# | StrokeWidth 0 159 | Shape157 = Rectangle ((11+(12*15))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_7Color# | StrokeWidth 0 160 | Shape158 = Rectangle ((11+(12*15))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_8Color# | StrokeWidth 0 161 | Shape159 = Rectangle ((11+(12*15))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_9Color# | StrokeWidth 0 162 | Shape160 = Rectangle ((11+(12*15))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block16_10Color# | StrokeWidth 0 163 | Shape161 = Rectangle ((11+(12*16))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_1Color# | StrokeWidth 0 164 | Shape162 = Rectangle ((11+(12*16))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_2Color# | StrokeWidth 0 165 | Shape163 = Rectangle ((11+(12*16))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_3Color# | StrokeWidth 0 166 | Shape164 = Rectangle ((11+(12*16))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_4Color# | StrokeWidth 0 167 | Shape165 = Rectangle ((11+(12*16))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_5Color# | StrokeWidth 0 168 | Shape166 = Rectangle ((11+(12*16))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_6Color# | StrokeWidth 0 169 | Shape167 = Rectangle ((11+(12*16))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_7Color# | StrokeWidth 0 170 | Shape168 = Rectangle ((11+(12*16))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_8Color# | StrokeWidth 0 171 | Shape169 = Rectangle ((11+(12*16))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_9Color# | StrokeWidth 0 172 | Shape170 = Rectangle ((11+(12*16))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block17_10Color# | StrokeWidth 0 173 | Shape171 = Rectangle ((11+(12*17))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_1Color# | StrokeWidth 0 174 | Shape172 = Rectangle ((11+(12*17))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_2Color# | StrokeWidth 0 175 | Shape173 = Rectangle ((11+(12*17))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_3Color# | StrokeWidth 0 176 | Shape174 = Rectangle ((11+(12*17))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_4Color# | StrokeWidth 0 177 | Shape175 = Rectangle ((11+(12*17))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_5Color# | StrokeWidth 0 178 | Shape176 = Rectangle ((11+(12*17))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_6Color# | StrokeWidth 0 179 | Shape177 = Rectangle ((11+(12*17))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_7Color# | StrokeWidth 0 180 | Shape178 = Rectangle ((11+(12*17))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_8Color# | StrokeWidth 0 181 | Shape179 = Rectangle ((11+(12*17))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_9Color# | StrokeWidth 0 182 | Shape180 = Rectangle ((11+(12*17))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block18_10Color# | StrokeWidth 0 183 | Shape181 = Rectangle ((11+(12*18))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_1Color# | StrokeWidth 0 184 | Shape182 = Rectangle ((11+(12*18))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_2Color# | StrokeWidth 0 185 | Shape183 = Rectangle ((11+(12*18))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_3Color# | StrokeWidth 0 186 | Shape184 = Rectangle ((11+(12*18))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_4Color# | StrokeWidth 0 187 | Shape185 = Rectangle ((11+(12*18))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_5Color# | StrokeWidth 0 188 | Shape186 = Rectangle ((11+(12*18))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_6Color# | StrokeWidth 0 189 | Shape187 = Rectangle ((11+(12*18))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_7Color# | StrokeWidth 0 190 | Shape188 = Rectangle ((11+(12*18))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_8Color# | StrokeWidth 0 191 | Shape189 = Rectangle ((11+(12*18))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_9Color# | StrokeWidth 0 192 | Shape190 = Rectangle ((11+(12*18))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block19_10Color# | StrokeWidth 0 193 | Shape191 = Rectangle ((11+(12*19))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_1Color# | StrokeWidth 0 194 | Shape192 = Rectangle ((11+(12*19))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_2Color# | StrokeWidth 0 195 | Shape193 = Rectangle ((11+(12*19))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_3Color# | StrokeWidth 0 196 | Shape194 = Rectangle ((11+(12*19))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_4Color# | StrokeWidth 0 197 | Shape195 = Rectangle ((11+(12*19))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_5Color# | StrokeWidth 0 198 | Shape196 = Rectangle ((11+(12*19))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_6Color# | StrokeWidth 0 199 | Shape197 = Rectangle ((11+(12*19))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_7Color# | StrokeWidth 0 200 | Shape198 = Rectangle ((11+(12*19))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_8Color# | StrokeWidth 0 201 | Shape199 = Rectangle ((11+(12*19))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_9Color# | StrokeWidth 0 202 | Shape200 = Rectangle ((11+(12*19))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block20_10Color# | StrokeWidth 0 203 | Shape201 = Rectangle ((11+(12*20))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_1Color# | StrokeWidth 0 204 | Shape202 = Rectangle ((11+(12*20))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_2Color# | StrokeWidth 0 205 | Shape203 = Rectangle ((11+(12*20))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_3Color# | StrokeWidth 0 206 | Shape204 = Rectangle ((11+(12*20))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_4Color# | StrokeWidth 0 207 | Shape205 = Rectangle ((11+(12*20))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_5Color# | StrokeWidth 0 208 | Shape206 = Rectangle ((11+(12*20))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_6Color# | StrokeWidth 0 209 | Shape207 = Rectangle ((11+(12*20))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_7Color# | StrokeWidth 0 210 | Shape208 = Rectangle ((11+(12*20))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_8Color# | StrokeWidth 0 211 | Shape209 = Rectangle ((11+(12*20))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_9Color# | StrokeWidth 0 212 | Shape210 = Rectangle ((11+(12*20))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block21_10Color# | StrokeWidth 0 213 | Shape211 = Rectangle ((11+(12*21))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_1Color# | StrokeWidth 0 214 | Shape212 = Rectangle ((11+(12*21))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_2Color# | StrokeWidth 0 215 | Shape213 = Rectangle ((11+(12*21))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_3Color# | StrokeWidth 0 216 | Shape214 = Rectangle ((11+(12*21))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_4Color# | StrokeWidth 0 217 | Shape215 = Rectangle ((11+(12*21))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_5Color# | StrokeWidth 0 218 | Shape216 = Rectangle ((11+(12*21))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_6Color# | StrokeWidth 0 219 | Shape217 = Rectangle ((11+(12*21))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_7Color# | StrokeWidth 0 220 | Shape218 = Rectangle ((11+(12*21))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_8Color# | StrokeWidth 0 221 | Shape219 = Rectangle ((11+(12*21))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_9Color# | StrokeWidth 0 222 | Shape220 = Rectangle ((11+(12*21))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block22_10Color# | StrokeWidth 0 223 | Shape221 = Rectangle ((11+(12*22))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_1Color# | StrokeWidth 0 224 | Shape222 = Rectangle ((11+(12*22))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_2Color# | StrokeWidth 0 225 | Shape223 = Rectangle ((11+(12*22))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_3Color# | StrokeWidth 0 226 | Shape224 = Rectangle ((11+(12*22))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_4Color# | StrokeWidth 0 227 | Shape225 = Rectangle ((11+(12*22))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_5Color# | StrokeWidth 0 228 | Shape226 = Rectangle ((11+(12*22))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_6Color# | StrokeWidth 0 229 | Shape227 = Rectangle ((11+(12*22))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_7Color# | StrokeWidth 0 230 | Shape228 = Rectangle ((11+(12*22))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_8Color# | StrokeWidth 0 231 | Shape229 = Rectangle ((11+(12*22))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_9Color# | StrokeWidth 0 232 | Shape230 = Rectangle ((11+(12*22))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block23_10Color# | StrokeWidth 0 233 | Shape231 = Rectangle ((11+(12*23))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_1Color# | StrokeWidth 0 234 | Shape232 = Rectangle ((11+(12*23))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_2Color# | StrokeWidth 0 235 | Shape233 = Rectangle ((11+(12*23))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_3Color# | StrokeWidth 0 236 | Shape234 = Rectangle ((11+(12*23))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_4Color# | StrokeWidth 0 237 | Shape235 = Rectangle ((11+(12*23))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_5Color# | StrokeWidth 0 238 | Shape236 = Rectangle ((11+(12*23))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_6Color# | StrokeWidth 0 239 | Shape237 = Rectangle ((11+(12*23))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_7Color# | StrokeWidth 0 240 | Shape238 = Rectangle ((11+(12*23))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_8Color# | StrokeWidth 0 241 | Shape239 = Rectangle ((11+(12*23))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_9Color# | StrokeWidth 0 242 | Shape240 = Rectangle ((11+(12*23))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block24_10Color# | StrokeWidth 0 243 | Shape241 = Rectangle ((11+(12*24))*#Scale#),(140-(0*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_1Color# | StrokeWidth 0 244 | Shape242 = Rectangle ((11+(12*24))*#Scale#),(140-(1*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_2Color# | StrokeWidth 0 245 | Shape243 = Rectangle ((11+(12*24))*#Scale#),(140-(2*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_3Color# | StrokeWidth 0 246 | Shape244 = Rectangle ((11+(12*24))*#Scale#),(140-(3*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_4Color# | StrokeWidth 0 247 | Shape245 = Rectangle ((11+(12*24))*#Scale#),(140-(4*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_5Color# | StrokeWidth 0 248 | Shape246 = Rectangle ((11+(12*24))*#Scale#),(140-(5*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_6Color# | StrokeWidth 0 249 | Shape247 = Rectangle ((11+(12*24))*#Scale#),(140-(6*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_7Color# | StrokeWidth 0 250 | Shape248 = Rectangle ((11+(12*24))*#Scale#),(140-(7*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_8Color# | StrokeWidth 0 251 | Shape249 = Rectangle ((11+(12*24))*#Scale#),(140-(8*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_9Color# | StrokeWidth 0 252 | Shape250 = Rectangle ((11+(12*24))*#Scale#),(140-(9*(9*#Scale#))),(6*#Scale#),(6*#Scale#),0,0 | FillColor #Block25_10Color# | StrokeWidth 0 253 | AntiAlias = 1 254 | DynamicVariables = 1 -------------------------------------------------------------------------------- /@Resources/NET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meti0X7CB/SystemFetch/faa4f59682651d5ce79c2098461c5d2c550bad36/@Resources/NET.png -------------------------------------------------------------------------------- /@Resources/RAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meti0X7CB/SystemFetch/faa4f59682651d5ce79c2098461c5d2c550bad36/@Resources/RAM.png -------------------------------------------------------------------------------- /@Resources/SSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meti0X7CB/SystemFetch/faa4f59682651d5ce79c2098461c5d2c550bad36/@Resources/SSD.png -------------------------------------------------------------------------------- /Calendar/Calendar.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | [Variables] 13 | Scale = 1.5 14 | Color = 240,240,240 15 | SubColor = 170,170,170 16 | DeColor = 100,100,100 17 | Highlight = 254,105,97 18 | FrostLevel = Acrylic 19 | Theme = Dark 20 | CornerType = Round 21 | DaysText = [MeasureDaysLayout] 22 | 23 | [FrostedGlass] 24 | Measure = Plugin 25 | Plugin = FrostedGlass 26 | Type = #FrostLevel# 27 | Border = None 28 | Corner = #CornerType# 29 | Backdrop = #Theme# 30 | BorderVisible = 0 31 | 32 | [MeterCanvas] 33 | Meter = Shape 34 | Shape = Rectangle 0,0,(300*#Scale#),(300*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 35 | 36 | [MeasureMonthName] 37 | Measure = Time 38 | Format = %B 39 | 40 | [MeasureDaysLayout] 41 | Measure = Script 42 | ScriptFile ="#@#Calendar.lua" 43 | DynamicVariables = 1 44 | 45 | [MeterMonth] 46 | Meter = String 47 | Text = [MeasureMonthName] 48 | FontSize = (17*#Scale#) 49 | FontColor = #Highlight# 50 | FontFace = Segoe UI 51 | FontWeight = 600 52 | X = (25*#Scale#) 53 | Y = (35*#Scale#) 54 | AntiAlias = 1 55 | InlineSetting = Case | Upper 56 | InlineSetting2 = CharacterSpacing | 0.5 | 0.5 57 | StringAlign = LeftCenter 58 | 59 | [MeterCurrentDay] 60 | Meter = Shape 61 | Shape = Rectangle (21.5*#Scale#), (92.5*#Scale#), (29*#Scale#), (29*#Scale#), (15*#Scale#) | Fill Color #Highlight#,200 | StrokeWidth 0 62 | X = #MeasureCurrentDayX#*#Scale# 63 | Y = #MeasureCurrentDayY#*#Scale# 64 | DynamicVariables = 1 65 | 66 | [MeterWeekdays] 67 | Meter = String 68 | Text = " S M T W T F S " 69 | FontSize = (13*#Scale#) 70 | FontFace = Consolas 71 | FontColor = #Color# 72 | FontWeight = 600 73 | X = (21.9*#Scale#) 74 | Y = (70*#Scale#) 75 | AntiAlias = 1 76 | InlineSetting = Color | #SubColor# 77 | InlinePattern = "S" 78 | StringAlign = LeftCenter 79 | 80 | [MeterDays] 81 | Meter = String 82 | Text = #DaysText# 83 | FontSize = (13*#Scale#) 84 | FontFace = Consolas 85 | FontColor = #Color# 86 | FontWeight = 600 87 | X = (11.9*#Scale#) 88 | Y = (88*#Scale#) 89 | StringAlign = LeftTop 90 | AntiAlias = 1 91 | DynamicVariables = 1 92 | ; This pattern matches the first three characters of each line or the first three characters after a newline 93 | InlinePattern = (^.{3}|(?<=\n).{3}) 94 | InlineSetting = Color | #SubColor# 95 | ; This pattern matches any three characters that are followed by a newline 96 | InlinePattern2 = (.{3})(?=\n)|(.{3})$ 97 | InlineSetting2 = Color | #SubColor# 98 | ; This pattern matches a space character that follows a single digit (1-9) at a word boundary 99 | InlinePattern3 = (?<=\b[1-9])\x20 100 | InlineSetting3 = Size | (19.5*#Scale#) 101 | ; This pattern matches a space character that precedes a single digit (1-9) at a word boundary 102 | InlinePattern4 = \x20(?=[1-9]\b) 103 | InlineSetting4 = Size | (6.5*#Scale#) 104 | ; This pattern matches a space character at the beginning of the string or after a newline 105 | InlinePattern5 = (?<=^|\n)\x20 106 | InlineSetting5 = Size | (20*#Scale#) 107 | ; This pattern matches any characters at the beginning of the string up to the first occurrence of " 1" 108 | InlinePattern6 = (^.*?(?= 1)) 109 | InlineSetting6 = Color | #DeColor# 110 | ; This pattern matches the first occurrence of " 1" after four lines 111 | InlinePattern7 = (?:.*\n){4}.*?( 1[\s\S]*) 112 | InlineSetting7 = Color | #DeColor# -------------------------------------------------------------------------------- /Clock/Clock1.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 240,240,240 20 | SubColor = 199,199,199 21 | Highlight = 254,105,97 22 | FrostLevel = Acrylic 23 | Theme = Dark 24 | CornerType = Round 25 | 26 | [FrostedGlass] 27 | Measure = Plugin 28 | Plugin = FrostedGlass 29 | Type = #FrostLevel# 30 | Border = None 31 | Corner = #CornerType# 32 | Backdrop = #Theme# 33 | BorderVisible = 0 34 | 35 | [MeterCanvas] 36 | Meter = Shape 37 | Shape = Rectangle 0,0,(300*#Scale#),(300*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 38 | 39 | [MeasureHour] 40 | Measure = Time 41 | Format = %I 42 | 43 | [MeasureMinute] 44 | Measure = Time 45 | Format = %M 46 | 47 | [MeasureSecond] 48 | Measure = Time 49 | Format = %S 50 | 51 | [MeterCenter] 52 | Meter = Shape 53 | Shape = Ellipse (150*#Scale#),(150*#Scale#),(7*#Scale#) | Fill Color #SubColor# | StrokeWidth 0 54 | 55 | [MeterHands] 56 | Meter = Shape 57 | Shape = Rectangle (150*#Scale#),(150*#Scale#),(10*#Scale#),(-50*#Scale#),(5*#Scale#) | Offset (-12/2*#Scale#),(-40*#Scale#) | Rotate (([MeasureHour]*60+[MeasureMinute])/720*360),(12/2*#Scale#),(90*#Scale#) | StrokeWidth 0 | Fill Color #SubColor# 58 | Shape2 = Rectangle (150*#Scale#),(150*#Scale#),(8*#Scale#),(-75*#Scale#),(4*#Scale#) | Offset (-8/2*#Scale#), (-30*#Scale#) | Rotate ([MeasureMinute]/60*360),(8/2*#Scale#),(105*#Scale#) | StrokeWidth 0 | Fill Color #Color# 59 | Shape3 = Rectangle (150*#Scale#),(150*#Scale#),(4*#Scale#),(-100*#Scale#),(2*#Scale#) | Offset (-4/2*#Scale#), (-20*#Scale#) | Rotate ([MeasureSecond]/60*360),(4/2*#Scale#),(120*#Scale#) | StrokeWidth 0 | Fill Color #Highlight# 60 | DynamicVariables = 1 61 | AntiAlias = 1 62 | -------------------------------------------------------------------------------- /Clock/Clock2.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 240,240,240 20 | SubColor = 199,199,199 21 | Highlight = 254,105,97 22 | FrostLevel = Acrylic 23 | Theme = Dark 24 | CornerType = Round 25 | Center = (150*#Scale#) 26 | NumberRadius = (85*#Scale#) 27 | HourRadius = 110 28 | MinuteRadius = 125 29 | MinuteRadiusE = 140 30 | HourRadiusEnd = 160 31 | 32 | 33 | [FrostedGlass] 34 | Measure = Plugin 35 | Plugin = FrostedGlass 36 | Type = #FrostLevel# 37 | Border = None 38 | Corner = #CornerType# 39 | Backdrop = #Theme# 40 | BorderVisible = 0 41 | 42 | [MeterCanvas] 43 | Meter = Shape 44 | Shape = Rectangle 0,0,(300*#Scale#),(300*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 45 | 46 | [MeasureSecond] 47 | Measure = Time 48 | Format = %S 49 | 50 | [MeasureMinute] 51 | Measure = Time 52 | Format = %M 53 | 54 | [MeasureHour] 55 | Measure = Time 56 | Format = %I 57 | 58 | [MeterHourMarks] 59 | Meter = Shape 60 | Shape = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(30)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(30)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(30)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(30)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 61 | Shape2 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(60)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(60)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(60)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(60)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 62 | Shape3 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(90)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(90)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 63 | Shape4 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(120)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(120)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(120)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(120)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 64 | Shape5 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(150)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(150)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(150)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(150)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 65 | Shape6 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(180)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(180)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 66 | Shape7 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(210)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(210)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(210)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(210)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 67 | Shape8 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(240)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(240)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(240)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(240)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 68 | Shape9 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(270)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(270)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 69 | Shape10 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(300)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(300)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(300)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(300)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 70 | Shape11 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(330)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(330)))),(#Center#+(#HourRadiusEnd#*#Scale#*Cos(Rad(330)))),(#Center#+(#HourRadiusEnd#*#Scale#*Sin(Rad(330)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 71 | Shape12 = Line (#Center#+(#HourRadius#*#Scale#*Cos(Rad(360)))),(#Center#+(#HourRadius#*#Scale#*Sin(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(360)))) | StrokeWidth (4*#Scale#) | Stroke Color #SubColor# 72 | 73 | [MeterMinuteMarks] 74 | Meter = Shape 75 | Shape = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(6)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 76 | Shape2 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(12)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 77 | Shape3 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(18)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 78 | Shape4 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(24)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 79 | Shape5 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(36)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 80 | Shape6 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(42)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 81 | Shape7 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(48)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 82 | Shape8 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(54)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 83 | Shape9 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(66)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 84 | Shape10 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(72)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 85 | Shape11 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(78)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 86 | Shape12 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(84)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 87 | Shape13 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(96)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 88 | Shape14 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(102)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 89 | Shape15 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(108)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 90 | Shape16 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(114)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 91 | Shape17 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(126)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 92 | Shape18 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(132)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 93 | Shape19 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(138)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 94 | Shape20 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(144)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 95 | Shape21 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(156)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 96 | Shape22 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(162)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 97 | Shape23 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(168)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 98 | Shape24 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(174)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 99 | Shape25 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(186)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 100 | Shape26 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(192)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 101 | Shape27 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(198)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 102 | Shape28 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(204)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 103 | Shape29 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(216)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 104 | Shape30 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(222)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 105 | Shape31 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(228)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 106 | Shape32 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(234)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 107 | Shape33 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(246)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 108 | Shape34 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(252)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 109 | Shape35 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(258)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 110 | Shape36 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(264)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 111 | Shape37 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(276)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 112 | Shape38 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(282)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 113 | Shape39 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(288)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 114 | Shape40 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(294)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 115 | Shape41 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(306)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 116 | Shape42 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(312)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 117 | Shape43 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(318)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 118 | Shape44 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(324)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 119 | Shape45 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(336)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 120 | Shape46 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(342)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 121 | Shape47 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(348)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 122 | Shape48 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(354)))) | StrokeWidth (2*#Scale#) | Stroke Color #SubColor# 123 | 124 | [MeterNumbersStyle] 125 | Meter = String 126 | FontColor = #Color# 127 | FontSize = (30*#Scale#) 128 | FontFace = Segoe UI 129 | FontWeight = 600 130 | AntiAlias = 1 131 | StringAlign = CenterCenter 132 | 133 | [MeterNumber3] 134 | Meter = String 135 | MeterStyle = MeterNumbersStyle 136 | Text = 3 137 | X = (#Center#+(#NumberRadius#*Cos(Rad(0)))) 138 | Y = (#Center#+(#NumberRadius#*Sin(Rad(0)))) 139 | 140 | [MeterNumber6] 141 | Meter = String 142 | MeterStyle = MeterNumbersStyle 143 | Text = 6 144 | X = (#Center#+(#NumberRadius#*Cos(Rad(90)))) 145 | Y = (#Center#+(#NumberRadius#*Sin(Rad(90)))) 146 | 147 | [MeterNumber9] 148 | Meter = String 149 | MeterStyle = MeterNumbersStyle 150 | Text = 9 151 | X = (#Center#+(#NumberRadius#*Cos(Rad(180)))) 152 | Y = (#Center#+(#NumberRadius#*Sin(Rad(180)))) 153 | 154 | [MeterNumber12] 155 | Meter = String 156 | MeterStyle = MeterNumbersStyle 157 | Text = 12 158 | X = (#Center#+(#NumberRadius#*Cos(Rad(270)))) 159 | Y = (#Center#+(#NumberRadius#*Sin(Rad(270)))) 160 | 161 | [MeterHands] 162 | Meter = Shape 163 | Shape = Ellipse (150*#Scale#),(150*#Scale#),(9*#Scale#) | Fill Color #Color# | StrokeWidth 0 164 | Shape2 = Rectangle (150*#Scale#),(150*#Scale#),(5*#Scale#),(-25*#Scale#),(2*#Scale#) | Offset (-5/2*#Scale#),(-5*#Scale#) | Rotate (([MeasureHour]*60+[MeasureMinute])/720*360),(5/2*#Scale#),(30*#Scale#) | StrokeWidth 0 | Fill Color #Color# 165 | Shape3 = Rectangle (150*#Scale#),(150*#Scale#),(10*#Scale#),(-50*#Scale#),(5*#Scale#) | Offset (-10/2*#Scale#),(-25*#Scale#) | Rotate (([MeasureHour]*60+[MeasureMinute])/720*360),(10/2*#Scale#),(75*#Scale#) | StrokeWidth 1 | StrokeColor 0,0,0,25 | Fill Color #Color# 166 | Shape4 = Rectangle (150*#Scale#),(150*#Scale#),(5*#Scale#),(-25*#Scale#),(2*#Scale#) | Offset (-5/2*#Scale#),(-5*#Scale#) | Rotate ([MeasureMinute]/60*360),(5/2*#Scale#),(30*#Scale#) | StrokeWidth 0 | Fill Color #Color# 167 | Shape5 = Rectangle (150*#Scale#),(150*#Scale#),(10*#Scale#),(-100*#Scale#),(5*#Scale#) | Offset (-10/2*#Scale#),(-25*#Scale#)| Rotate ([MeasureMinute]/60*360),(10/2*#Scale#),(125*#Scale#) | StrokeWidth 1 | StrokeColor 0,0,0,25 | Fill Color #Color# 168 | Shape6 = Rectangle (150*#Scale#),(150*#Scale#),(4*#Scale#),(-150*#Scale#),(2*#Scale#) | Offset (-4/2*#Scale#),(25*#Scale#) | Rotate ([MeasureSecond]/60*360),(4/2*#Scale#),(125*#Scale#) | StrokeWidth 0 | Fill Color #Highlight# 169 | Shape7 = Ellipse (150*#Scale#),(150*#Scale#),(6*#Scale#) | Fill Color #Highlight# | StrokeWidth 0 170 | Shape8 = Ellipse (150*#Scale#),(150*#Scale#),(2*#Scale#) | Fill Color #SubColor# | StrokeWidth 0 171 | DynamicVariables = 1 172 | AntiAlias = 1 173 | -------------------------------------------------------------------------------- /Clock/Clock3.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 240,240,240 20 | FrostLevel = Acrylic 21 | Theme = Dark 22 | CornerType = Round 23 | Center = (150*#Scale#) 24 | MinuteRadius = 125 25 | MinuteRadiusE = 140 26 | 27 | [FrostedGlass] 28 | Measure = Plugin 29 | Plugin = FrostedGlass 30 | Type = #FrostLevel# 31 | Border = None 32 | Corner = #CornerType# 33 | Backdrop = #Theme# 34 | BorderVisible = 0 35 | 36 | [MeterCanvas] 37 | Meter = Shape 38 | Shape = Rectangle 0,0,(300*#Scale#),(300*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 39 | 40 | [MeasureSecond] 41 | Measure = Time 42 | Format = %S 43 | 44 | [MeasureTime] 45 | Measure = Time 46 | Format = %#I:%M 47 | 48 | [MeterTime] 49 | Meter = String 50 | MeasureName = MeasureTime 51 | X = (150*#Scale#) 52 | Y = (150*#Scale#) 53 | FontColor = #Color# 54 | FontSize = (75*#Scale#) 55 | FontFace = Segoe UI 56 | FontWeight = 600 57 | AntiAlias = 1 58 | StringAlign = CenterCenter 59 | 60 | [MeterMinuteMarks] 61 | Meter = Shape 62 | Shape = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(270)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(270)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(10-[MeasureSecond]))/60))/2+0.5)*255)) 63 | Shape2 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(276)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(11-[MeasureSecond]))/60))/2+0.5)*255)) 64 | Shape3 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(282)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(12-[MeasureSecond]))/60))/2+0.5)*255)) 65 | Shape4 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(288)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(13-[MeasureSecond]))/60))/2+0.5)*255)) 66 | Shape5 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(294)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(14-[MeasureSecond]))/60))/2+0.5)*255)) 67 | Shape6 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(300)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(300)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(300)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(300)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(15-[MeasureSecond]))/60))/2+0.5)*255)) 68 | Shape7 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(306)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(16-[MeasureSecond]))/60))/2+0.5)*255)) 69 | Shape8 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(312)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(17-[MeasureSecond]))/60))/2+0.5)*255)) 70 | Shape9 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(318)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(18-[MeasureSecond]))/60))/2+0.5)*255)) 71 | Shape10 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(324)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(19-[MeasureSecond]))/60))/2+0.5)*255)) 72 | Shape11 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(330)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(330)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(330)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(330)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(20-[MeasureSecond]))/60))/2+0.5)*255)) 73 | Shape12 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(336)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(21-[MeasureSecond]))/60))/2+0.5)*255)) 74 | Shape13 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(342)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(22-[MeasureSecond]))/60))/2+0.5)*255)) 75 | Shape14 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(348)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(23-[MeasureSecond]))/60))/2+0.5)*255)) 76 | Shape15 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(354)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(24-[MeasureSecond]))/60))/2+0.5)*255)) 77 | Shape16 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(360)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(360)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(25-[MeasureSecond]))/60))/2+0.5)*255)) 78 | Shape17 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(6)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(26-[MeasureSecond]))/60))/2+0.5)*255)) 79 | Shape18 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(12)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(27-[MeasureSecond]))/60))/2+0.5)*255)) 80 | Shape19 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(18)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(28-[MeasureSecond]))/60))/2+0.5)*255)) 81 | Shape20 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(24)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(29-[MeasureSecond]))/60))/2+0.5)*255)) 82 | Shape21 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(30)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(30)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(30)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(30)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(30-[MeasureSecond]))/60))/2+0.5)*255)) 83 | Shape22 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(36)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(31-[MeasureSecond]))/60))/2+0.5)*255)) 84 | Shape23 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(42)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(32-[MeasureSecond]))/60))/2+0.5)*255)) 85 | Shape24 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(48)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(33-[MeasureSecond]))/60))/2+0.5)*255)) 86 | Shape25 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(54)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(34-[MeasureSecond]))/60))/2+0.5)*255)) 87 | Shape26 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(60)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(60)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(60)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(60)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(35-[MeasureSecond]))/60))/2+0.5)*255)) 88 | Shape27 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(66)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(36-[MeasureSecond]))/60))/2+0.5)*255)) 89 | Shape28 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(72)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(37-[MeasureSecond]))/60))/2+0.5)*255)) 90 | Shape29 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(78)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(38-[MeasureSecond]))/60))/2+0.5)*255)) 91 | Shape30 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(84)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(39-[MeasureSecond]))/60))/2+0.5)*255)) 92 | Shape31 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(90)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(90)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(40-[MeasureSecond]))/60))/2+0.5)*255)) 93 | Shape32 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(96)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(41-[MeasureSecond]))/60))/2+0.5)*255)) 94 | Shape33 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(102)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(42-[MeasureSecond]))/60))/2+0.5)*255)) 95 | Shape34 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(108)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(43-[MeasureSecond]))/60))/2+0.5)*255)) 96 | Shape35 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(114)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(44-[MeasureSecond]))/60))/2+0.5)*255)) 97 | Shape36 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(120)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(120)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(120)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(120)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(45-[MeasureSecond]))/60))/2+0.5)*255)) 98 | Shape37 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(126)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(46-[MeasureSecond]))/60))/2+0.5)*255)) 99 | Shape38 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(132)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(47-[MeasureSecond]))/60))/2+0.5)*255)) 100 | Shape39 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(138)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(48-[MeasureSecond]))/60))/2+0.5)*255)) 101 | Shape40 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(144)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(49-[MeasureSecond]))/60))/2+0.5)*255)) 102 | Shape41 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(150)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(150)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(150)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(150)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(50-[MeasureSecond]))/60))/2+0.5)*255)) 103 | Shape42 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(156)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(51-[MeasureSecond]))/60))/2+0.5)*255)) 104 | Shape43 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(162)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(52-[MeasureSecond]))/60))/2+0.5)*255)) 105 | Shape44 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(168)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(53-[MeasureSecond]))/60))/2+0.5)*255)) 106 | Shape45 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(174)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(54-[MeasureSecond]))/60))/2+0.5)*255)) 107 | Shape46 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(180)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(180)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(55-[MeasureSecond]))/60))/2+0.5)*255)) 108 | Shape47 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(186)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(56-[MeasureSecond]))/60))/2+0.5)*255)) 109 | Shape48 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(192)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(57-[MeasureSecond]))/60))/2+0.5)*255)) 110 | Shape49 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(198)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(58-[MeasureSecond]))/60))/2+0.5)*255)) 111 | Shape50 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(204)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(59-[MeasureSecond]))/60))/2+0.5)*255)) 112 | Shape51 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(210)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(210)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(210)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(210)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(60-[MeasureSecond]))/60))/2+0.5)*255)) 113 | Shape52 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(216)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 1-[MeasureSecond]))/60))/2+0.5)*255)) 114 | Shape53 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(222)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 2-[MeasureSecond]))/60))/2+0.5)*255)) 115 | Shape54 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(228)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 3-[MeasureSecond]))/60))/2+0.5)*255)) 116 | Shape55 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(234)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 4-[MeasureSecond]))/60))/2+0.5)*255)) 117 | Shape56 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(240)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(240)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(240)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(240)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 5-[MeasureSecond]))/60))/2+0.5)*255)) 118 | Shape57 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(246)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 6-[MeasureSecond]))/60))/2+0.5)*255)) 119 | Shape58 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(252)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 7-[MeasureSecond]))/60))/2+0.5)*255)) 120 | Shape59 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(258)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 8-[MeasureSecond]))/60))/2+0.5)*255)) 121 | Shape60 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(264)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 9-[MeasureSecond]))/60))/2+0.5)*255)) 122 | DynamicVariables = 1 123 | 124 | [MeterMinuteMarker] 125 | Meter = Shape 126 | Shape = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(270)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(270)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(270)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 1-[MeasureSecond]))/60))/2)*10**4)) 127 | Shape2 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(276)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(276)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 2-[MeasureSecond]))/60))/2)*10**4)) 128 | Shape3 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(282)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(282)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 3-[MeasureSecond]))/60))/2)*10**4)) 129 | Shape4 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(288)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(288)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 4-[MeasureSecond]))/60))/2)*10**4)) 130 | Shape5 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(294)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(294)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 5-[MeasureSecond]))/60))/2)*10**4)) 131 | Shape6 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(300)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(300)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(300)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(300)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 6-[MeasureSecond]))/60))/2)*10**4)) 132 | Shape7 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(306)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(306)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 7-[MeasureSecond]))/60))/2)*10**4)) 133 | Shape8 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(312)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(312)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 8-[MeasureSecond]))/60))/2)*10**4)) 134 | Shape9 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(318)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(318)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*( 9-[MeasureSecond]))/60))/2)*10**4)) 135 | Shape10 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(324)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(324)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(10-[MeasureSecond]))/60))/2)*10**4)) 136 | Shape11 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(330)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(330)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(330)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(330)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(11-[MeasureSecond]))/60))/2)*10**4)) 137 | Shape12 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(336)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(336)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(12-[MeasureSecond]))/60))/2)*10**4)) 138 | Shape13 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(342)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(342)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(13-[MeasureSecond]))/60))/2)*10**4)) 139 | Shape14 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(348)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(348)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(14-[MeasureSecond]))/60))/2)*10**4)) 140 | Shape15 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(354)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(354)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(15-[MeasureSecond]))/60))/2)*10**4)) 141 | Shape16 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(360)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(360)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(360)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(16-[MeasureSecond]))/60))/2)*10**4)) 142 | Shape17 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(6)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(6)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(17-[MeasureSecond]))/60))/2)*10**4)) 143 | Shape18 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(12)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(12)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(18-[MeasureSecond]))/60))/2)*10**4)) 144 | Shape19 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(18)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(18)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(19-[MeasureSecond]))/60))/2)*10**4)) 145 | Shape20 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(24)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(24)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(20-[MeasureSecond]))/60))/2)*10**4)) 146 | Shape21 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(30)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(30)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(30)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(30)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(21-[MeasureSecond]))/60))/2)*10**4)) 147 | Shape22 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(36)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(36)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(22-[MeasureSecond]))/60))/2)*10**4)) 148 | Shape23 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(42)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(42)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(23-[MeasureSecond]))/60))/2)*10**4)) 149 | Shape24 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(48)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(48)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(24-[MeasureSecond]))/60))/2)*10**4)) 150 | Shape25 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(54)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(54)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(25-[MeasureSecond]))/60))/2)*10**4)) 151 | Shape26 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(60)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(60)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(60)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(60)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(26-[MeasureSecond]))/60))/2)*10**4)) 152 | Shape27 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(66)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(66)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(27-[MeasureSecond]))/60))/2)*10**4)) 153 | Shape28 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(72)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(72)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(28-[MeasureSecond]))/60))/2)*10**4)) 154 | Shape29 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(78)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(78)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(29-[MeasureSecond]))/60))/2)*10**4)) 155 | Shape30 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(84)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(84)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(30-[MeasureSecond]))/60))/2)*10**4)) 156 | Shape31 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(90)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(90)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(90)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(31-[MeasureSecond]))/60))/2)*10**4)) 157 | Shape32 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(96)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(96)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(32-[MeasureSecond]))/60))/2)*10**4)) 158 | Shape33 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(102)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(102)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(33-[MeasureSecond]))/60))/2)*10**4)) 159 | Shape34 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(108)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(108)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(34-[MeasureSecond]))/60))/2)*10**4)) 160 | Shape35 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(114)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(114)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(35-[MeasureSecond]))/60))/2)*10**4)) 161 | Shape36 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(120)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(120)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(120)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(120)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(36-[MeasureSecond]))/60))/2)*10**4)) 162 | Shape37 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(126)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(126)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(37-[MeasureSecond]))/60))/2)*10**4)) 163 | Shape38 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(132)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(132)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(38-[MeasureSecond]))/60))/2)*10**4)) 164 | Shape39 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(138)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(138)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(39-[MeasureSecond]))/60))/2)*10**4)) 165 | Shape40 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(144)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(144)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(40-[MeasureSecond]))/60))/2)*10**4)) 166 | Shape41 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(150)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(150)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(150)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(150)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(41-[MeasureSecond]))/60))/2)*10**4)) 167 | Shape42 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(156)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(156)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(42-[MeasureSecond]))/60))/2)*10**4)) 168 | Shape43 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(162)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(162)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(43-[MeasureSecond]))/60))/2)*10**4)) 169 | Shape44 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(168)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(168)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(44-[MeasureSecond]))/60))/2)*10**4)) 170 | Shape45 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(174)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(174)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(45-[MeasureSecond]))/60))/2)*10**4)) 171 | Shape46 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(180)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(180)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(180)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(46-[MeasureSecond]))/60))/2)*10**4)) 172 | Shape47 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(186)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(186)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(47-[MeasureSecond]))/60))/2)*10**4)) 173 | Shape48 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(192)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(192)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(48-[MeasureSecond]))/60))/2)*10**4)) 174 | Shape49 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(198)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(198)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(49-[MeasureSecond]))/60))/2)*10**4)) 175 | Shape50 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(204)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(204)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(50-[MeasureSecond]))/60))/2)*10**4)) 176 | Shape51 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(210)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(210)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(210)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(210)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(51-[MeasureSecond]))/60))/2)*10**4)) 177 | Shape52 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(216)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(216)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(52-[MeasureSecond]))/60))/2)*10**4)) 178 | Shape53 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(222)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(222)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(53-[MeasureSecond]))/60))/2)*10**4)) 179 | Shape54 = Line (#Center#+((#MinuteRadius#+42.25)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadius#+42.25)*#Scale#*Sin(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Cos(Rad(228)))),(#Center#+((#MinuteRadiusE#+42.75)*#Scale#*Sin(Rad(228)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(54-[MeasureSecond]))/60))/2)*10**4)) 180 | Shape55 = Line (#Center#+((#MinuteRadius#+30)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadius#+30)*#Scale#*Sin(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Cos(Rad(234)))),(#Center#+((#MinuteRadiusE#+30.75)*#Scale#*Sin(Rad(234)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(55-[MeasureSecond]))/60))/2)*10**4)) 181 | Shape56 = Line (#Center#+((#MinuteRadius#+20.5)*#Scale#*Cos(Rad(240)))),(#Center#+((#MinuteRadius#+20.5)*#Scale#*Sin(Rad(240)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Cos(Rad(240)))),(#Center#+((#MinuteRadiusE#+21.5)*#Scale#*Sin(Rad(240)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(56-[MeasureSecond]))/60))/2)*10**4)) 182 | Shape57 = Line (#Center#+((#MinuteRadius#+12)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadius#+12)*#Scale#*Sin(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Cos(Rad(246)))),(#Center#+((#MinuteRadiusE#+13)*#Scale#*Sin(Rad(246)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(57-[MeasureSecond]))/60))/2)*10**4)) 183 | Shape58 = Line (#Center#+((#MinuteRadius#+6.25)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadius#+6.25)*#Scale#*Sin(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Cos(Rad(252)))),(#Center#+((#MinuteRadiusE#+6.75)*#Scale#*Sin(Rad(252)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(58-[MeasureSecond]))/60))/2)*10**4)) 184 | Shape59 = Line (#Center#+((#MinuteRadius#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadius#+2.5)*#Scale#*Sin(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Cos(Rad(258)))),(#Center#+((#MinuteRadiusE#+2.5)*#Scale#*Sin(Rad(258)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(59-[MeasureSecond]))/60))/2)*10**4)) 185 | Shape60 = Line (#Center#+(#MinuteRadius#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadius#*#Scale#*Sin(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Cos(Rad(264)))),(#Center#+(#MinuteRadiusE#*#Scale#*Sin(Rad(264)))) | StrokeWidth (2*#Scale#) | Stroke Color #Color#,(Round(((0.2-sin((2*PI*(60-[MeasureSecond]))/60))/2)*10**4)) 186 | DynamicVariables = 1 -------------------------------------------------------------------------------- /HWMonitor/HWMonitor.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 255,255,255 20 | SubColor = 170,170,170 21 | GraphColor = 254,105,105 22 | FrostLevel = Acrylic 23 | Theme = Dark 24 | CornerType = Round 25 | 26 | [FrostedGlass] 27 | Measure = Plugin 28 | Plugin = FrostedGlass 29 | Type = #FrostLevel# 30 | Border = None 31 | Corner = #CornerType# 32 | Backdrop = #Theme# 33 | BorderVisible = 0 34 | 35 | [MeterCanvas] 36 | Meter = Shape 37 | Shape = Rectangle 0,0,(300*#Scale#),(300*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 38 | 39 | ; ---CPU--- 40 | [MeterCPUIcon] 41 | Meter = Image 42 | ImageName = "#@#CPU.png" 43 | X = (20.5*#Scale#) 44 | Y = (22.5*#Scale#) 45 | W = (28*#Scale#) 46 | H = (28*#Scale#) 47 | AntiAlias = 1 48 | ImageTint = #Color# 49 | 50 | 51 | [MeasureCPU] 52 | Measure = Plugin 53 | Plugin = UsageMonitor 54 | Category = Processor Information 55 | Counter = % Processor Utility 56 | Name = _Total 57 | 58 | [MeasureCPUScaled] 59 | Measure = Calc 60 | Formula = (MeasureCPU > 100 ? 100 : MeasureCPU) 61 | MaxValue = 100 62 | 63 | [MeterCPUText] 64 | Meter = String 65 | MeasureName = MeasureCPUScaled 66 | Text = %1 67 | X = (70*#Scale#) 68 | Y = (24*#Scale#) 69 | FontColor = #Color# 70 | FontSize = (13*#Scale#) 71 | FontFace = Segoe UI 72 | FontWeight = 600 73 | AntiAlias = 1 74 | DynamicVariables = 1 75 | 76 | [MeterCPUUnit] 77 | Meter = String 78 | Text = " %" 79 | X = R 80 | Y = (31*#Scale#) 81 | FontColor = #SubColor# 82 | FontSize = (8*#Scale#) 83 | FontFace = Segoe UI 84 | FontWeight = 600 85 | AntiAlias = 1 86 | DynamicVariables = 1 87 | 88 | [MeterCPUHistogram] 89 | Meter = Histogram 90 | MeasureName = MeasureCPUScaled 91 | X = (140*#Scale#) 92 | Y = (20*#Scale#) 93 | W = (140*#Scale#) 94 | H = (35.5*#Scale#) 95 | SolidColor=0,0,0,1 96 | PrimaryColor = #GraphColor#,150 97 | AntiAlias = 1 98 | 99 | [MeterCPUGraph] 100 | Meter = Line 101 | MeasureName = MeasureCPUScaled 102 | X = (140*#Scale#) 103 | Y = (20*#Scale#) 104 | W = (140*#Scale#) 105 | H = (35*#Scale#) 106 | LineWidth = (2*#Scale#) 107 | LineColor = #GraphColor# 108 | AntiAlias = 1 109 | 110 | ; RAM 111 | [MeterRAMIcon] 112 | Meter = Image 113 | ImageName = "#@#RAM.png" 114 | X = (18.5*#Scale#) 115 | Y = (76*#Scale#) 116 | W = (33*#Scale#) 117 | H = (33*#Scale#) 118 | AntiAlias = 1 119 | ImageTint = #Color# 120 | 121 | [MeasureRAM] 122 | Measure = PhysicalMemory 123 | OnUpdateAction = [!SetVariable RAMUsage "(Round((([MeasureRAM:]/[MeasureRAM:MaxValue])*100),0))"] 124 | UpdateDivider = 16 125 | 126 | [MeterRAMText] 127 | Meter = String 128 | Text = #RAMUsage# 129 | Text = %1 130 | X = (70*#Scale#) 131 | Y = (80*#Scale#) 132 | FontColor = #Color# 133 | FontSize = (13*#Scale#) 134 | FontFace = Segoe UI 135 | FontWeight = 600 136 | AntiAlias = 1 137 | DynamicVariables = 1 138 | 139 | [MeterRAMUnit] 140 | Meter = String 141 | Text = " %" 142 | X = R 143 | Y = (87*#Scale#) 144 | FontColor = #SubColor# 145 | FontSize = (8*#Scale#) 146 | FontFace = Segoe UI 147 | FontWeight = 600 148 | AntiAlias = 1 149 | DynamicVariables = 1 150 | 151 | [MeterRAMHistogram] 152 | Meter = Histogram 153 | MeasureName = MeasureRAM 154 | X = (140*#Scale#) 155 | Y = (76*#Scale#) 156 | W = (140*#Scale#) 157 | H = (35.5*#Scale#) 158 | SolidColor=0,0,0,1 159 | PrimaryColor = #GraphColor#,150 160 | AntiAlias = 1 161 | 162 | [MeterRAMGraph] 163 | Meter = Line 164 | MeasureName = MeasureRAM 165 | X = (140*#Scale#) 166 | Y = (76*#Scale#) 167 | W = (140*#Scale#) 168 | H = (35*#Scale#) 169 | LineWidth = (2*#Scale#) 170 | LineColor = #GraphColor# 171 | AntiAlias = 1 172 | 173 | ; GPU 174 | [MeterGPUIcon] 175 | Meter = Image 176 | ImageName = "#@#GPU.png" 177 | X = (17*#Scale#) 178 | Y = (129*#Scale#) 179 | W = (37*#Scale#) 180 | H = (37*#Scale#) 181 | AntiAlias = 1 182 | ImageTint = #Color# 183 | 184 | [MeasureGPU] 185 | Measure = Plugin 186 | Plugin = UsageMonitor 187 | Category = GPU Engine 188 | Counter = Utilization Percentage 189 | 190 | [MeasureGPUScaled] 191 | Measure = Calc 192 | Formula = (MeasureGPU > 100 ? 100 : MeasureGPU) 193 | MaxValue = 100 194 | 195 | [MeterGPUText] 196 | Meter = String 197 | MeasureName = MeasureGPUScaled 198 | X = (70*#Scale#) 199 | Y = (135*#Scale#) 200 | FontColor = #Color# 201 | FontSize = (13*#Scale#) 202 | FontFace = Segoe UI 203 | FontWeight = 600 204 | AntiAlias = 1 205 | DynamicVariables = 1 206 | 207 | [MeterGPUUnit] 208 | Meter = String 209 | Text = " %" 210 | X = R 211 | Y = (142*#Scale#) 212 | FontColor = #SubColor# 213 | FontSize = (8*#Scale#) 214 | FontFace = Segoe UI 215 | FontWeight = 600 216 | AntiAlias = 1 217 | DynamicVariables = 1 218 | 219 | [MeterGPUistogram] 220 | Meter = Histogram 221 | MeasureName = MeasureGPUScaled 222 | X = (140*#Scale#) 223 | Y = (132*#Scale#) 224 | W = (140*#Scale#) 225 | H = (35.5*#Scale#) 226 | SolidColor=0,0,0,1 227 | PrimaryColor = #GraphColor#,150 228 | AntiAlias = 1 229 | 230 | [MeterGPUGraph] 231 | Meter = Line 232 | MeasureName = MeasureGPUScaled 233 | X = (140*#Scale#) 234 | Y = (132*#Scale#) 235 | W = (140*#Scale#) 236 | H = (35*#Scale#) 237 | LineWidth = (2*#Scale#) 238 | LineColor = #GraphColor# 239 | AntiAlias = 1 240 | 241 | ; SSD 242 | [MeterSSDIcon] 243 | Meter = Image 244 | ImageName = "#@#SSD.png" 245 | X = (17.5*#Scale#) 246 | Y = (188*#Scale#) 247 | W = (35*#Scale#) 248 | H = (35*#Scale#) 249 | AntiAlias = 1 250 | ImageTint = #Color# 251 | 252 | [MeasureSSDRead] 253 | Measure = Plugin 254 | Plugin = UsageMonitor 255 | Category = Process 256 | Counter = IO Read Bytes/sec 257 | 258 | [MeterSSDReadText] 259 | Meter = String 260 | Text = [MeasureSSDRead:/1000000,0] 261 | X = (70*#Scale#) 262 | Y = (184*#Scale#) 263 | FontColor = #Color# 264 | FontSize = (13*#Scale#) 265 | FontFace = Segoe UI 266 | FontWeight = 600 267 | AntiAlias = 1 268 | DynamicVariables = 1 269 | 270 | [MeterSSDReadUnit] 271 | Meter = String 272 | Text = " MB/s" 273 | X = R 274 | Y = (191*#Scale#) 275 | FontColor = #SubColor# 276 | FontSize = (8*#Scale#) 277 | FontFace = Segoe UI 278 | FontWeight = 600 279 | AntiAlias = 1 280 | DynamicVariables = 1 281 | 282 | [MeasureSSDWrite] 283 | Measure = Plugin 284 | Plugin = UsageMonitor 285 | Category = Process 286 | Counter = IO Write Bytes/sec 287 | 288 | [MeterSSDWriteText] 289 | Meter = String 290 | Text = [MeasureSSDWrite:/1000000,0] 291 | X = (70*#Scale#) 292 | Y = (202*#Scale#) 293 | FontColor = #Color# 294 | FontSize = (13*#Scale#) 295 | FontFace = Segoe UI 296 | FontWeight = 600 297 | AntiAlias = 1 298 | DynamicVariables = 1 299 | 300 | [MeterSSDWriteUnit] 301 | Meter = String 302 | Text = " MB/s" 303 | X = R 304 | Y = (209*#Scale#) 305 | FontColor = #SubColor# 306 | FontSize = (8*#Scale#) 307 | FontFace = Segoe UI 308 | FontWeight = 600 309 | AntiAlias = 1 310 | 311 | [MeasureSSDTotal] 312 | Measure = Plugin 313 | Plugin = UsageMonitor 314 | Category = Process 315 | Counter = IO Data Bytes/sec 316 | MaxValue = 100000000 317 | 318 | [MeterSSDistogram] 319 | Meter = Histogram 320 | MeasureName = MeasureSSDTotal 321 | X = (140*#Scale#) 322 | Y = (188*#Scale#) 323 | W = (140*#Scale#) 324 | H = (35.5*#Scale#) 325 | SolidColor=0,0,0,1 326 | PrimaryColor = #GraphColor#,150 327 | AntiAlias = 1 328 | 329 | [MeterSSDGraph] 330 | Meter = Line 331 | MeasureName = MeasureSSDTotal 332 | X = (140*#Scale#) 333 | Y = (188*#Scale#) 334 | W = (140*#Scale#) 335 | H = (35*#Scale#) 336 | LineWidth = (2*#Scale#) 337 | LineColor = #GraphColor# 338 | AntiAlias = 1 339 | 340 | ; NET 341 | [MeterNETIcon] 342 | Meter = Image 343 | ImageName = "#@#NET.png" 344 | X = (23*#Scale#) 345 | Y = (251*#Scale#) 346 | W = (25*#Scale#) 347 | H = (25*#Scale#) 348 | AntiAlias = 1 349 | ImageTint = #Color# 350 | 351 | [MeasureNETOut] 352 | Measure = NetOut 353 | 354 | [MeasureNETOutText] 355 | Meter = String 356 | Text = [MeasureNETOut:/1000000,0] 357 | X = (70*#Scale#) 358 | Y = (240*#Scale#) 359 | FontColor = #Color# 360 | FontSize = (13*#Scale#) 361 | FontFace = Segoe UI 362 | FontWeight = 600 363 | AntiAlias = 1 364 | DynamicVariables = 1 365 | 366 | [MeasureNETOutUnit] 367 | Meter = String 368 | Text = " MB/s" 369 | X = R 370 | Y = (247*#Scale#) 371 | FontColor = #SubColor# 372 | FontSize = (8*#Scale#) 373 | FontFace = Segoe UI 374 | FontWeight = 600 375 | AntiAlias = 1 376 | DynamicVariables = 1 377 | 378 | [MeasureNETIn] 379 | Measure = NetIn 380 | 381 | [MeterNETInText] 382 | Meter = String 383 | Text = [MeasureNETIn:/1000000,0] 384 | X = (70*#Scale#) 385 | Y = (259*#Scale#) 386 | FontColor = #Color# 387 | FontSize = (13*#Scale#) 388 | FontFace = Segoe UI 389 | FontWeight = 600 390 | AntiAlias = 1 391 | DynamicVariables = 1 392 | 393 | [MeterNETInUnit] 394 | Meter = String 395 | Text = " MB/s" 396 | X = R 397 | Y = (266*#Scale#) 398 | FontColor = #SubColor# 399 | FontSize = (8*#Scale#) 400 | FontFace = Segoe UI 401 | FontWeight = 600 402 | AntiAlias = 1 403 | 404 | [MeasureNETTotal] 405 | Measure = NetTotal 406 | MaxValue = 100000000 407 | 408 | [MeterNETistogram] 409 | Meter = Histogram 410 | MeasureName = MeasureNETTotal 411 | X = (140*#Scale#) 412 | Y = (244*#Scale#) 413 | W = (140*#Scale#) 414 | H = (35.5*#Scale#) 415 | SolidColor=0,0,0,1 416 | PrimaryColor = #GraphColor#,150 417 | AntiAlias = 1 418 | 419 | [MeterNETGraph] 420 | Meter = Line 421 | MeasureName = MeasureNETTotal 422 | X = (140*#Scale#) 423 | Y = (244*#Scale#) 424 | W = (140*#Scale#) 425 | H = (35*#Scale#) 426 | LineWidth = (2*#Scale#) 427 | LineColor = #GraphColor# 428 | AntiAlias = 1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SystemFetch 2 | A Win 11 style Rainmeter skin suit for date, time and system monitoring. 3 | 4 | ## Preview 5 | 6 | ![Screenshot 2025-04-28 231607](https://github.com/user-attachments/assets/17336342-bbf1-4f69-aca3-3a994830ad7d) 7 | 8 | Note: You can always change the scaling, color and graph color as you desire. 9 | ## Minimum Requirements: 10 | - Windows 11 11 | - Rainmeter 4.5.20 12 | 13 | ## Features 14 | - Fully scalable UI with customizable colors 15 | - CPU/GPU/RAM usage monitor (%) 16 | - Download/Upload monitor (MB/s) 17 | - Disk read/write monitor (MB/s) 18 | - Built with the new UsageMonitor plugin for better resourse optimization and hardware detection 19 | 20 | ## Installation 21 | 1 - Download the latest version from [Releases](https://github.com/Meti0X7CB/SystemFetch/releases) tab. 22 | 23 | 2 - Install the skin by double-clicking the .rmskin file and follow the steps in the installer. 24 | -------------------------------------------------------------------------------- /System/System.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 1000 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 240,240,240 20 | SubColor = 190,190,190 21 | GraphColor = 254,105,105 22 | FrostLevel = Acrylic 23 | Theme = Dark 24 | CornerType = Round 25 | PingServer = google.com 26 | 27 | [FrostedGlass] 28 | Measure = Plugin 29 | Plugin = FrostedGlass 30 | Type = #FrostLevel# 31 | Border = None 32 | Corner = #CornerType# 33 | Backdrop = #Theme# 34 | BorderVisible = 0 35 | 36 | [MeterCanvas] 37 | Meter = Shape 38 | Shape = Rectangle 0,0,(300*#Scale#),(640*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 39 | 40 | [MeasureTime] 41 | Measure = Time 42 | Format = %#I:%M %p %a, %b %#d, %Y 43 | 44 | [MeasureUptime] 45 | Measure = Uptime 46 | Format = "%4!i!d %3!i!h %2!i!m" 47 | 48 | [MeasureOS] 49 | Measure = SysInfo 50 | SysInfoType = OS_VERSION 51 | UpdateDivider = -1 52 | 53 | [MeasureIP] 54 | Measure = SysInfo 55 | SysInfoType = IP_ADDRESS 56 | SysInfoData = Best 57 | DynamicVariables = 1 58 | 59 | [MeasureDNS] 60 | Measure = SysInfo 61 | SysInfoType = DNS_SERVER 62 | SysInfoData = Best 63 | DynamicVariables = 1 64 | 65 | [MeasurePC] 66 | Measure = SysInfo 67 | SysInfoType = COMPUTER_NAME 68 | UpdateDivider = -1 69 | 70 | [MeasureUser] 71 | Measure = SysInfo 72 | SysInfoType = USER_NAME 73 | UpdateDivider = -1 74 | 75 | [MeasurePING] 76 | Measure = Plugin 77 | Plugin = PingPlugin 78 | DestAddress = #PingServer# 79 | 80 | [MeasureSite] 81 | Measure = WebParser 82 | URL = https://browserleaks.com/ip 83 | RegExp = (?siU)data-ip="(.*)" 84 | DynamicVariables = 1 85 | 86 | [MeasurePublicIP] 87 | Measure = WebParser 88 | URL = [MeasureSite] 89 | StringIndex = 1 90 | DynamicVariables = 1 91 | 92 | ;------------------Info----------------- 93 | 94 | [MeterPC] 95 | Meter = String 96 | Text = "[MeasureUser]" 97 | X = (150*#Scale#) 98 | Y = (17*#Scale#) 99 | FontColor = #GraphColor# 100 | FontSize = (15*#Scale#) 101 | FontFace = Segoe UI 102 | FontWeight = 600 103 | AntiAlias = 1 104 | DynamicVariables = 1 105 | StringAlign = CenterTop 106 | 107 | [MeterTime] 108 | Meter = String 109 | MeasureName = MeasureTime 110 | X = (150*#Scale#) 111 | Y = (55*#Scale#) 112 | FontColor = #Color# 113 | FontSize = (13*#Scale#) 114 | FontFace = Segoe UI 115 | FontWeight = 600 116 | AntiAlias = 1 117 | InlineSetting = Color | #SubColor# 118 | InlinePattern = PM 119 | InlineSetting2 = Size | (10*#Scale#) 120 | InlinePattern2 = PM 121 | InlineSetting3 = Color | #SubColor# 122 | InlinePattern3 = AM 123 | InlineSetting4 = Size | (10*#Scale#) 124 | InlinePattern4 = AM 125 | InlineSetting5 = Color | #SubColor# 126 | InlinePattern5 = , 127 | StringAlign = CenterTop 128 | 129 | [MeterOSVersion] 130 | Meter = String 131 | Text = "[MeasurePC] running [MeasureOS]" 132 | X = (150*#Scale#) 133 | Y = (90*#Scale#) 134 | FontColor = #Color# 135 | FontSize = (12*#Scale#) 136 | FontFace = Segoe UI 137 | FontWeight = 600 138 | AntiAlias = 1 139 | DynamicVariables = 1 140 | StringAlign = CenterTop 141 | Text = OS : %1 142 | InlineSetting = Color | #SubColor# 143 | InlinePattern = running 144 | 145 | [MeterUptime] 146 | Meter = String 147 | MeasureName = MeasureUptime 148 | X = (150*#Scale#) 149 | Y = (120*#Scale#) 150 | FontColor = #Color# 151 | FontSize = (12*#Scale#) 152 | FontFace = Segoe UI 153 | FontWeight = 600 154 | AntiAlias = 1 155 | StringAlign = CenterTop 156 | Text = Up Time : %1 157 | InlineSetting = Color | #SubColor# 158 | InlinePattern = Up Time : 159 | 160 | [MeterLocalIP] 161 | Meter = String 162 | MeasureName = MeasureIP 163 | X = (30*#Scale#) 164 | Y = (150*#Scale#) 165 | FontColor = #Color# 166 | FontSize = (12*#Scale#) 167 | FontFace = Segoe UI 168 | FontWeight = 600 169 | AntiAlias = 1 170 | Text = Local IP : %1 171 | InlineSetting = Color | #SubColor# 172 | InlinePattern = Local IP : 173 | 174 | [MeterPublicIP] 175 | Meter = String 176 | MeasureName = MeasurePublicIP 177 | X = (30*#Scale#) 178 | Y = (180*#Scale#) 179 | FontColor = #Color# 180 | FontSize = (12*#Scale#) 181 | FontFace = Segoe UI 182 | FontWeight = 600 183 | AntiAlias = 1 184 | DynamicVariables = 1 185 | Text = IP : %1 186 | InlineSetting = Color | #SubColor# 187 | InlinePattern = IP : 188 | 189 | [MeterDNS] 190 | Meter = String 191 | MeasureName = MeasureDNS 192 | X = (270*#Scale#) 193 | Y = (180*#Scale#) 194 | FontColor = #Color# 195 | FontSize = (12*#Scale#) 196 | FontFace = Segoe UI 197 | FontWeight = 600 198 | AntiAlias = 1 199 | StringAlign = RightTop 200 | Text = DNS : %1 201 | InlineSetting = Color | #SubColor# 202 | InlinePattern = DNS : 203 | 204 | [MeterPING] 205 | Meter = String 206 | MeasureName = MeasurePING 207 | X = (270*#Scale#) 208 | Y = (150*#Scale#) 209 | FontColor = #Color# 210 | FontSize = (12*#Scale#) 211 | FontFace = Segoe UI 212 | FontWeight = 600 213 | AntiAlias = 1 214 | DynamicVariables = 1 215 | StringAlign = RightTop 216 | Text = Ping : %1 217 | InlineSetting = Color | #SubColor# 218 | InlinePattern = Ping : 219 | 220 | ;-------------------CPU------------------- 221 | 222 | [MeasureCPU] 223 | Measure = Plugin 224 | Plugin = UsageMonitor 225 | Category = Processor Information 226 | Counter = % Processor Utility 227 | Name = _Total 228 | 229 | [MeasureCPUScaled] 230 | Measure = Calc 231 | Formula = (MeasureCPU > 100 ? 100 : MeasureCPU) 232 | MaxValue = 100 233 | 234 | [MeterCPU] 235 | Meter = String 236 | Text = "CPU" 237 | X = (20*#Scale#) 238 | Y = (215*#Scale#) 239 | FontColor = #Color# 240 | FontSize = (13*#Scale#) 241 | FontFace = Segoe UI 242 | FontWeight = 600 243 | AntiAlias = 1 244 | StringAlign = LeftTop 245 | DynamicVariables = 1 246 | 247 | [MeasureCPULine] 248 | Measure = Calc 249 | Formula = Floor(([MeasureCPUScaled:0]/100) * 25 + 0.5) 250 | DynamicVariables = 1 251 | 252 | [MeterCPULine] 253 | Meter = String 254 | Text = "-------------------------" 255 | X = (151*#Scale#) 256 | Y = (213*#Scale#) 257 | FontColor = #SubColor# 258 | FontSize = (13*#Scale#) 259 | FontFace = Segoe UI 260 | FontWeight = 800 261 | AntiAlias = 1 262 | StringAlign = CenterTop 263 | DynamicVariables = 1 264 | InlineSetting = Color | #GraphColor# 265 | InlinePattern = ^.{[MeasureCPULine]} 266 | DynamicVariables = 1 267 | 268 | [MeterCPUUsage] 269 | Meter = String 270 | Text = "[MeasureCPUScaled:0]%" 271 | X = (280*#Scale#) 272 | Y = (215*#Scale#) 273 | FontColor = #Color# 274 | FontSize = (13*#Scale#) 275 | FontFace = Segoe UI 276 | FontWeight = 600 277 | AntiAlias = 1 278 | StringAlign = RightTop 279 | DynamicVariables = 1 280 | InlineSetting = Color | #SubColor# 281 | InlinePattern = % 282 | InlineSetting2 = Size | (10*#Scale#) 283 | InlinePattern2 = % 284 | 285 | [MeasureCPUApp1] 286 | Measure = Plugin 287 | Plugin = UsageMonitor 288 | Alias = CPU 289 | Index = 1 290 | 291 | [MeasureCPUApp2] 292 | Measure = Plugin 293 | Plugin = UsageMonitor 294 | Alias = CPU 295 | Index = 2 296 | 297 | [MeasureCPUApp3] 298 | Measure = Plugin 299 | Plugin = UsageMonitor 300 | Alias = CPU 301 | Index = 3 302 | 303 | [MeterCPUApp1] 304 | Meter = String 305 | MeasureName = MeasureCPUApp1 306 | X = (30*#Scale#) 307 | Y = (245*#Scale#) 308 | W = (190*#Scale#) 309 | H = (25*#Scale#) 310 | FontColor = #SubColor# 311 | FontSize = (12*#Scale#) 312 | FontFace = Segoe UI 313 | FontWeight = 600 314 | AntiAlias = 1 315 | ClipString = 1 316 | DynamicVariables = 1 317 | StringAlign = LeftTop 318 | 319 | [MeterCPUApp1Usage] 320 | Meter = String 321 | Text = "[MeasureCPUApp1:1]%" 322 | X = (270*#Scale#) 323 | Y = (245*#Scale#) 324 | FontColor = #SubColor# 325 | FontSize = (12*#Scale#) 326 | FontFace = Segoe UI 327 | FontWeight = 600 328 | AntiAlias = 1 329 | DynamicVariables = 1 330 | StringAlign = RightTop 331 | InlineSetting = Color | #SubColor# 332 | InlinePattern = % 333 | InlineSetting2 = Size | (10*#Scale#) 334 | InlinePattern2 = % 335 | 336 | [MeterCPUApp2] 337 | Meter = String 338 | MeasureName = MeasureCPUApp2 339 | X = (30*#Scale#) 340 | Y = (275*#Scale#) 341 | W = (190*#Scale#) 342 | H = (25*#Scale#) 343 | FontColor = #SubColor# 344 | FontSize = (12*#Scale#) 345 | FontFace = Segoe UI 346 | FontWeight = 600 347 | AntiAlias = 1 348 | ClipString = 1 349 | DynamicVariables = 1 350 | StringAlign = LeftTop 351 | 352 | [MeterCPUApp2Usage] 353 | Meter = String 354 | Text = "[MeasureCPUApp2:1]%" 355 | X = (270*#Scale#) 356 | Y = (275*#Scale#) 357 | FontColor = #SubColor# 358 | FontSize = (12*#Scale#) 359 | FontFace = Segoe UI 360 | FontWeight = 600 361 | AntiAlias = 1 362 | DynamicVariables = 1 363 | StringAlign = RightTop 364 | InlineSetting = Color | #SubColor# 365 | InlinePattern = % 366 | InlineSetting2 = Size | (10*#Scale#) 367 | InlinePattern2 = % 368 | 369 | [MeterCPUApp3] 370 | Meter = String 371 | MeasureName = MeasureCPUApp3 372 | X = (30*#Scale#) 373 | Y = (305*#Scale#) 374 | W = (190*#Scale#) 375 | H = (25*#Scale#) 376 | FontColor = #SubColor# 377 | FontSize = (12*#Scale#) 378 | FontFace = Segoe UI 379 | FontWeight = 600 380 | AntiAlias = 1 381 | ClipString = 1 382 | DynamicVariables = 1 383 | StringAlign = LeftTop 384 | 385 | [MeterCPUApp3Usage] 386 | Meter = String 387 | Text = "[MeasureCPUApp3:1]%" 388 | X = (270*#Scale#) 389 | Y = (305*#Scale#) 390 | FontColor = #SubColor# 391 | FontSize = (12*#Scale#) 392 | FontFace = Segoe UI 393 | FontWeight = 600 394 | AntiAlias = 1 395 | DynamicVariables = 1 396 | StringAlign = RightTop 397 | InlineSetting = Color | #SubColor# 398 | InlinePattern = % 399 | InlineSetting2 = Size | (10*#Scale#) 400 | InlinePattern2 = % 401 | 402 | ;-------------------RAM------------------- 403 | 404 | [MeasureRAM] 405 | Measure = PhysicalMemory 406 | OnUpdateAction = [!SetVariable RAMUsage "(Round((([MeasureRAM:]/[MeasureRAM:MaxValue])*100),0))"] 407 | UpdateDivider = 16 408 | 409 | [MeterRAM] 410 | Meter = String 411 | Text = "RAM" 412 | X = (20*#Scale#) 413 | Y = (340*#Scale#) 414 | FontColor = #Color# 415 | FontSize = (13*#Scale#) 416 | FontFace = Segoe UI 417 | FontWeight = 600 418 | AntiAlias = 1 419 | StringAlign = LeftTop 420 | DynamicVariables = 1 421 | 422 | [MeasureRAMLine] 423 | Measure = Calc 424 | Formula = Floor((#RAMUsage#/100) * 25 + 0.5) 425 | DynamicVariables = 1 426 | 427 | [MeteRAMLine] 428 | Meter = String 429 | Text = "-------------------------" 430 | X = (151*#Scale#) 431 | Y = (338*#Scale#) 432 | FontColor = #SubColor# 433 | FontSize = (13*#Scale#) 434 | FontFace = Segoe UI 435 | FontWeight = 800 436 | AntiAlias = 1 437 | StringAlign = CenterTop 438 | DynamicVariables = 1 439 | InlineSetting = Color | #GraphColor# 440 | InlinePattern = ^.{[MeasureRAMLine]} 441 | DynamicVariables = 1 442 | 443 | [MeterRAMUsage] 444 | Meter = String 445 | Text = "#RAMUsage#%" 446 | X = (280*#Scale#) 447 | Y = (340*#Scale#) 448 | FontColor = #Color# 449 | FontSize = (13*#Scale#) 450 | FontFace = Segoe UI 451 | FontWeight = 600 452 | AntiAlias = 1 453 | StringAlign = RightTop 454 | DynamicVariables = 1 455 | InlineSetting = Color | #SubColor# 456 | InlinePattern = % 457 | InlineSetting2 = Size | (10*#Scale#) 458 | InlinePattern2 = % 459 | 460 | [MeasureRAMApp1] 461 | Measure = Plugin 462 | Plugin = UsageMonitor 463 | Alias = RAM 464 | Index = 1 465 | 466 | [MeasureRAMApp2] 467 | Measure = Plugin 468 | Plugin = UsageMonitor 469 | Alias = RAM 470 | Index = 2 471 | 472 | [MeasureRAMApp3] 473 | Measure = Plugin 474 | Plugin = UsageMonitor 475 | Alias = RAM 476 | Index = 3 477 | 478 | [MeterRAMApp1] 479 | Meter = String 480 | MeasureName = MeasureRAMApp1 481 | X = (30*#Scale#) 482 | Y = (370*#Scale#) 483 | W = (190*#Scale#) 484 | H = (25*#Scale#) 485 | FontColor = #SubColor# 486 | FontSize = (12*#Scale#) 487 | FontFace = Segoe UI 488 | FontWeight = 600 489 | AntiAlias = 1 490 | ClipString = 1 491 | DynamicVariables = 1 492 | StringAlign = LeftTop 493 | 494 | [MeterRAMApp1UsageScaled] 495 | Measure = Calc 496 | Formula = [MeasureRAMApp1:]/1000000 497 | DynamicVariables = 1 498 | 499 | [MeterRAMApp1Usage] 500 | Meter = String 501 | Text = "[MeterRAMApp1UsageScaled:0]MB" 502 | X = (270*#Scale#) 503 | Y = (370*#Scale#) 504 | FontColor = #SubColor# 505 | FontSize = (12*#Scale#) 506 | FontFace = Segoe UI 507 | FontWeight = 600 508 | AntiAlias = 1 509 | DynamicVariables = 1 510 | StringAlign = RightTop 511 | InlineSetting = Size | (9*#Scale#) 512 | InlinePattern = MB 513 | InlineSetting2 = Weight | 500 514 | InlinePattern2 = MB 515 | 516 | [MeterRAMApp2] 517 | Meter = String 518 | MeasureName = MeasureRAMApp2 519 | X = (30*#Scale#) 520 | Y = (400*#Scale#) 521 | W = (190*#Scale#) 522 | H = (25*#Scale#) 523 | FontColor = #SubColor# 524 | FontSize = (12*#Scale#) 525 | FontFace = Segoe UI 526 | FontWeight = 600 527 | AntiAlias = 1 528 | ClipString = 1 529 | DynamicVariables = 1 530 | StringAlign = LeftTop 531 | 532 | [MeterRAMApp2UsageScaled] 533 | Measure = Calc 534 | Formula = [MeasureRAMApp2:]/1000000 535 | DynamicVariables = 1 536 | 537 | [MeterRAMApp2Usage] 538 | Meter = String 539 | Text = "[MeterRAMApp2UsageScaled:0]MB" 540 | X = (270*#Scale#) 541 | Y = (400*#Scale#) 542 | FontColor = #SubColor# 543 | FontSize = (12*#Scale#) 544 | FontFace = Segoe UI 545 | FontWeight = 600 546 | AntiAlias = 1 547 | DynamicVariables = 1 548 | StringAlign = RightTop 549 | InlineSetting = Size | (9*#Scale#) 550 | InlinePattern = MB 551 | InlineSetting2 = Weight | 500 552 | InlinePattern2 = MB 553 | 554 | [MeterRAMApp3] 555 | Meter = String 556 | MeasureName = MeasureRAMApp3 557 | X = (30*#Scale#) 558 | Y = (430*#Scale#) 559 | W = (190*#Scale#) 560 | H = (25*#Scale#) 561 | FontColor = #SubColor# 562 | FontSize = (12*#Scale#) 563 | FontFace = Segoe UI 564 | FontWeight = 600 565 | AntiAlias = 1 566 | ClipString = 1 567 | DynamicVariables = 1 568 | StringAlign = LeftTop 569 | 570 | [MeterRAMApp3UsageScaled] 571 | Measure = Calc 572 | Formula = [MeasureRAMApp3:]/1000000 573 | DynamicVariables = 1 574 | 575 | [MeterRAMApp3Usage] 576 | Meter = String 577 | Text = "[MeterRAMApp3UsageScaled:0]MB" 578 | X = (270*#Scale#) 579 | Y = (430*#Scale#) 580 | FontColor = #SubColor# 581 | FontSize = (12*#Scale#) 582 | FontFace = Segoe UI 583 | FontWeight = 600 584 | AntiAlias = 1 585 | DynamicVariables = 1 586 | StringAlign = RightTop 587 | InlineSetting = Size | (9*#Scale#) 588 | InlinePattern = MB 589 | InlineSetting2 = Weight | 500 590 | InlinePattern2 = MB 591 | 592 | ;-------------------GPU------------------- 593 | 594 | [MeasureGPU] 595 | Measure = Plugin 596 | Plugin = UsageMonitor 597 | Category = GPU Engine 598 | Counter = Utilization Percentage 599 | 600 | [MeasureGPUScaled] 601 | Measure = Calc 602 | Formula = (MeasureGPU > 100 ? 100 : MeasureGPU) 603 | MaxValue = 100 604 | 605 | [MeterGPU] 606 | Meter = String 607 | Text = "GPU" 608 | X = (20*#Scale#) 609 | Y = (465*#Scale#) 610 | FontColor = #Color# 611 | FontSize = (13*#Scale#) 612 | FontFace = Segoe UI 613 | FontWeight = 600 614 | AntiAlias = 1 615 | StringAlign = LeftTop 616 | DynamicVariables = 1 617 | 618 | [MeasureGPULine] 619 | Measure = Calc 620 | Formula = Floor(([MeasureGPUScaled]/100) * 25 + 0.5) 621 | DynamicVariables = 1 622 | 623 | [MeteGPULine] 624 | Meter = String 625 | Text = "-------------------------" 626 | X = (151*#Scale#) 627 | Y = (463*#Scale#) 628 | FontColor = #SubColor# 629 | FontSize = (13*#Scale#) 630 | FontFace = Segoe UI 631 | FontWeight = 800 632 | AntiAlias = 1 633 | StringAlign = CenterTop 634 | DynamicVariables = 1 635 | InlineSetting = Color | #GraphColor# 636 | InlinePattern = ^.{[MeasureGPULine]} 637 | DynamicVariables = 1 638 | 639 | [MeterGPUUsage] 640 | Meter = String 641 | Text = "[MeasureGPUScaled:0]%" 642 | X = (280*#Scale#) 643 | Y = (465*#Scale#) 644 | FontColor = #Color# 645 | FontSize = (13*#Scale#) 646 | FontFace = Segoe UI 647 | FontWeight = 600 648 | AntiAlias = 1 649 | StringAlign = RightTop 650 | DynamicVariables = 1 651 | InlineSetting = Color | #SubColor# 652 | InlinePattern = % 653 | InlineSetting2 = Size | (10*#Scale#) 654 | InlinePattern2 = % 655 | 656 | [MeasureGPUApp1] 657 | Measure = Plugin 658 | Plugin = UsageMonitor 659 | Category = GPU Engine 660 | Counter = Utilization Percentage 661 | Rollup = 0 662 | PIDToName = 1 663 | Index = 1 664 | 665 | [MeasureGPUApp2] 666 | Measure = Plugin 667 | Plugin = UsageMonitor 668 | Category = GPU Engine 669 | Counter = Utilization Percentage 670 | Rollup = 0 671 | PIDToName = 1 672 | Index = 2 673 | 674 | [MeasureGPUApp3] 675 | Measure = Plugin 676 | Plugin = UsageMonitor 677 | Category = GPU Engine 678 | Counter = Utilization Percentage 679 | Rollup = 0 680 | PIDToName = 1 681 | Index = 3 682 | 683 | [MeterGPUApp1] 684 | Meter = String 685 | MeasureName = MeasureGPUApp1 686 | X = (30*#Scale#) 687 | Y = (495*#Scale#) 688 | W = (190*#Scale#) 689 | H = (25*#Scale#) 690 | FontColor = #SubColor# 691 | FontSize = (12*#Scale#) 692 | FontFace = Segoe UI 693 | FontWeight = 600 694 | AntiAlias = 1 695 | ClipString = 1 696 | DynamicVariables = 1 697 | StringAlign = LeftTop 698 | InlineSetting = Color | 0,0,0,0 699 | InlinePattern = #\d+$ 700 | 701 | [MeterGPUApp1Usage] 702 | Meter = String 703 | Text = "[MeasureGPUApp1:1]%" 704 | X = (270*#Scale#) 705 | Y = (495*#Scale#) 706 | FontColor = #SubColor# 707 | FontSize = (12*#Scale#) 708 | FontFace = Segoe UI 709 | FontWeight = 600 710 | AntiAlias = 1 711 | DynamicVariables = 1 712 | StringAlign = RightTop 713 | InlineSetting = Size | (10*#Scale#) 714 | InlinePattern = % 715 | 716 | [MeterGPUApp2] 717 | Meter = String 718 | MeasureName = MeasureGPUApp2 719 | X = (30*#Scale#) 720 | Y = (525*#Scale#) 721 | W = (190*#Scale#) 722 | H = (25*#Scale#) 723 | FontColor = #SubColor# 724 | FontSize = (12*#Scale#) 725 | FontFace = Segoe UI 726 | FontWeight = 600 727 | AntiAlias = 1 728 | ClipString = 1 729 | DynamicVariables = 1 730 | StringAlign = LeftTop 731 | InlineSetting = Color | 0,0,0,0 732 | InlinePattern = #\d+$ 733 | 734 | [MeterGPUApp2Usage] 735 | Meter = String 736 | Text = "[MeasureGPUApp2:1]%" 737 | X = (270*#Scale#) 738 | Y = (525*#Scale#) 739 | FontColor = #SubColor# 740 | FontSize = (12*#Scale#) 741 | FontFace = Segoe UI 742 | FontWeight = 600 743 | AntiAlias = 1 744 | DynamicVariables = 1 745 | StringAlign = RightTop 746 | InlineSetting = Size | (10*#Scale#) 747 | InlinePattern = % 748 | 749 | [MeterGPUApp3] 750 | Meter = String 751 | MeasureName = MeasureGPUApp3 752 | X = (30*#Scale#) 753 | Y = (555*#Scale#) 754 | W = (190*#Scale#) 755 | H = (25*#Scale#) 756 | FontColor = #SubColor# 757 | FontSize = (12*#Scale#) 758 | FontFace = Segoe UI 759 | FontWeight = 600 760 | AntiAlias = 1 761 | ClipString = 1 762 | DynamicVariables = 1 763 | StringAlign = LeftTop 764 | InlineSetting = Color | 0,0,0,0 765 | InlinePattern = #\d+$ 766 | 767 | [MeterGPUApp3Usage] 768 | Meter = String 769 | Text = "[MeasureGPUApp3:1]%" 770 | X = (270*#Scale#) 771 | Y = (555*#Scale#) 772 | FontColor = #SubColor# 773 | FontSize = (12*#Scale#) 774 | FontFace = Segoe UI 775 | FontWeight = 600 776 | AntiAlias = 1 777 | DynamicVariables = 1 778 | StringAlign = RightTop 779 | InlineSetting = Size | (10*#Scale#) 780 | InlinePattern = % 781 | 782 | ;-------------------DISK------------------- 783 | 784 | [MeasureTotalDiskSpace] 785 | Measure = FreeDiskSpace 786 | Drive = C: 787 | Total = 1 788 | UpdateDivider = 300 789 | 790 | [MeasureUsedDiskSpace] 791 | Measure = FreeDiskSpace 792 | Drive = C: 793 | InvertMeasure = 1 794 | UpdateDivider = 300 795 | 796 | [MeasureUsedDiskSpaceScaled] 797 | Measure = Calc 798 | Formula = [MeasureUsedDiskSpace]/[MeasureTotalDiskSpace]*100 799 | DynamicVariables = 1 800 | 801 | [MeasureDiskLine] 802 | Measure = Calc 803 | Formula = Floor(([MeasureUsedDiskSpaceScaled]/100) * 25 + 0.5) 804 | DynamicVariables = 1 805 | 806 | [MeterDisk] 807 | Meter = String 808 | Text = " C :" 809 | X = (20*#Scale#) 810 | Y = (590*#Scale#) 811 | FontColor = #Color# 812 | FontSize = (13*#Scale#) 813 | FontFace = Segoe UI 814 | FontWeight = 600 815 | AntiAlias = 1 816 | StringAlign = LeftTop 817 | DynamicVariables = 1 818 | 819 | [MeteDiskLine] 820 | Meter = String 821 | Text = "-------------------------" 822 | X = (151*#Scale#) 823 | Y = (590*#Scale#) 824 | FontColor = #SubColor# 825 | FontSize = (13*#Scale#) 826 | FontFace = Segoe UI 827 | FontWeight = 800 828 | AntiAlias = 1 829 | StringAlign = CenterTop 830 | DynamicVariables = 1 831 | InlineSetting = Color | #GraphColor# 832 | InlinePattern = ^.{[MeasureDiskLine]} 833 | DynamicVariables = 1 834 | 835 | [MeterDiskUsage] 836 | Meter = String 837 | Text = "[MeasureUsedDiskSpaceScaled:0]%" 838 | X = (280*#Scale#) 839 | Y = (590*#Scale#) 840 | FontColor = #Color# 841 | FontSize = (13*#Scale#) 842 | FontFace = Segoe UI 843 | FontWeight = 600 844 | AntiAlias = 1 845 | StringAlign = RightTop 846 | DynamicVariables = 1 847 | InlineSetting = Color | #SubColor# 848 | InlinePattern = % 849 | InlineSetting2 = Size | (10*#Scale#) 850 | InlinePattern2 = % -------------------------------------------------------------------------------- /Visualizer.ini: -------------------------------------------------------------------------------- 1 | [Metadata] 2 | Name = SystemFetch 3 | Author = Meti0X7CB 4 | Information = "A Win 11 style Rainmeter skin suit for date, time and system monitoring" 5 | Version = 2.5 6 | License = GNU General Public License v3.0 7 | 8 | [Rainmeter] 9 | Update = 60 10 | AccurateText = 1 11 | 12 | ;Change the Scale value to match your monitor scaling in windows (If Windows is 100% -> Scale = 1 , Windows = 150% -> Scale = 1.5) 13 | ;To change the text color, change Color/SubColor/Highlight value to desired R,G,B numbers (Color = 255,0,0 for example red) 14 | ;For transparent widget, change the FrostLevel and CornerType value to None 15 | ;For light windows themes, change the Theme value to Light1-5 (Theme = Light4 , Theme = Dark4 is the default dark theme value) 16 | 17 | [Variables] 18 | Scale = 1.5 19 | Color = 255,255,255 20 | SubColor = 200,200,200 21 | FrostLevel = Acrylic 22 | Theme = Dark 23 | CornerType = Round 24 | @include = "#@#MeasureBands.inc" 25 | @include2 = "#@#Blocks.inc" 26 | @include3 = "#@#MeterBands.inc" 27 | 28 | [FrostedGlass] 29 | Measure = Plugin 30 | Plugin = FrostedGlass 31 | Type = #FrostLevel# 32 | Border = None 33 | Corner = #CornerType# 34 | Backdrop = #Theme# 35 | BorderVisible = 0 36 | 37 | [MeterCanvas] 38 | Meter = Shape 39 | Shape = Rectangle 0,0,(315*#Scale#),(110*#Scale#),5 | Fill Color 0,0,0,1 | StrokeWidth 0 --------------------------------------------------------------------------------