├── .gitattributes ├── @Resources ├── Fonts │ ├── GoogleSans-Bold.ttf │ ├── GoogleSans-BoldItalic.ttf │ ├── GoogleSans-Italic.ttf │ ├── GoogleSans-Medium.ttf │ ├── GoogleSans-MediumItalic.ttf │ └── GoogleSans-Regular.ttf ├── Includes │ ├── Measures.inc │ └── Meters.inc ├── Plugins │ ├── 32bit │ │ └── SysColor.dll │ └── 64bit │ │ └── SysColor.dll ├── base-ZIP[2023.05.02-23.53.09].zip ├── base.png ├── hours.png ├── minutes.png ├── pin.png └── seconds.png ├── Clock.ini ├── Digital-centered-white.ini ├── Digital-centered.ini ├── Digital.ini └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-BoldItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-Italic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-MediumItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Fonts/GoogleSans-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Includes/Measures.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Includes/Measures.inc -------------------------------------------------------------------------------- /@Resources/Includes/Meters.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Includes/Meters.inc -------------------------------------------------------------------------------- /@Resources/Plugins/32bit/SysColor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Plugins/32bit/SysColor.dll -------------------------------------------------------------------------------- /@Resources/Plugins/64bit/SysColor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/Plugins/64bit/SysColor.dll -------------------------------------------------------------------------------- /@Resources/base-ZIP[2023.05.02-23.53.09].zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/base-ZIP[2023.05.02-23.53.09].zip -------------------------------------------------------------------------------- /@Resources/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/base.png -------------------------------------------------------------------------------- /@Resources/hours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/hours.png -------------------------------------------------------------------------------- /@Resources/minutes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/minutes.png -------------------------------------------------------------------------------- /@Resources/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/pin.png -------------------------------------------------------------------------------- /@Resources/seconds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameerasw/materialyou-clock/afe2494955bb38f95cff5a15e9f12afb574a0741/@Resources/seconds.png -------------------------------------------------------------------------------- /Clock.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | BackgroundMode=1 3 | Update=100 4 | 5 | [Metadata] 6 | Name=Material you Clock 7 | Description=Material You Android clock widget for Windows 8 | Tags=clock ,windows ,android ,materialyou ,material 9 | 10 | ============================================================ 11 | 12 | [AccentColor] 13 | Measure=Plugin 14 | Plugin=SysColor 15 | DisplayType=RGB 16 | ColorType=WIN8 17 | 18 | [MeasureTime] 19 | Measure=Time 20 | AverageSize=10 21 | 22 | [MeasureSec] 23 | Measure=Calc 24 | Formula=MeasureTime * 10 25 | 26 | [MeasureDate] 27 | Measure=Time 28 | Format=%d 29 | 30 | [MeterBack] 31 | Meter=IMAGE 32 | X=0 33 | Y=0 34 | W=180 35 | H=180 36 | ImageName=#@#base.png 37 | 38 | [MeterHours] 39 | MeasureName=MeasureTime 40 | Meter=ROTATOR 41 | X=0 42 | Y=0 43 | W=180 44 | H=180 45 | ImageName=#@#hours.png 46 | StartAngle=6.2832 47 | RotationAngle=6.2832 48 | ValueReminder=43200 49 | OffsetX=99.5 50 | OffsetY=99.5 51 | 52 | [MeterAccent] 53 | Meter=Shape 54 | Shape=Ellipse 90,90,90,90 | Fill Color [AccentColor],175 | StrokeWidth 0 | Stroke Color 0,0,0,1 55 | DynamicVariables=1 56 | AntiAlias=1 57 | 58 | 59 | [MeterMinutes] 60 | MeasureName=MeasureTime 61 | Meter=ROTATOR 62 | X=0 63 | Y=0 64 | W=180 65 | H=180 66 | ImageName=#@#minutes.png 67 | StartAngle=6.2832 68 | RotationAngle=6.2832 69 | ValueReminder=3600 70 | OffsetX=99.5 71 | OffsetY=99.5 72 | 73 | [MeterSeconds] 74 | MeasureName=MeasureSec 75 | Meter=ROTATOR 76 | X=0 77 | Y=0 78 | W=180 79 | H=180 80 | ImageName=#@#seconds.png 81 | StartAngle=6.2832 82 | RotationAngle=6.2832 83 | ValueReminder=600 84 | OffsetX=99.5 85 | OffsetY=99.5 86 | 87 | [MeterCenterPin] 88 | Meter=Image 89 | ImageName=#@#pin.png 90 | X=0 91 | Y=0 92 | W=180 93 | H=180 -------------------------------------------------------------------------------- /Digital-centered-white.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | BackgroundMode=1 3 | Update=100 4 | 5 | [Metadata] 6 | Name=Material you Clock 7 | Description=Material You Android clock widget for Windows 8 | Tags=clock ,windows ,android ,materialyou ,material 9 | 10 | ============================================================ 11 | 12 | [Variables] 13 | FONT=Google Sans 14 | 15 | [MeasureH] 16 | Measure=Time 17 | Format=%I 18 | 19 | [MeasureM] 20 | Measure=Time 21 | Format=%M 22 | 23 | [MeterH] 24 | Meter=String 25 | MeasureName=MeasureH 26 | MeasureName2=MeasureM 27 | X=200 28 | Y=100 29 | W=400 30 | FontSize=100 31 | FontColor=FFFFFF 32 | FontFace=#FONT# 33 | AntiAlias=1 34 | StringStyle=Bold 35 | StringAlign=CenterCenter 36 | DynamicVariables=1 37 | Text=%1:%2 38 | -------------------------------------------------------------------------------- /Digital-centered.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | BackgroundMode=1 3 | Update=100 4 | 5 | [Metadata] 6 | Name=Material you Clock 7 | Description=Material You Android clock widget for Windows 8 | Tags=clock ,windows ,android ,materialyou ,material 9 | 10 | ============================================================ 11 | 12 | [Variables] 13 | FONT=Google Sans 14 | 15 | [AccentColor] 16 | Measure=Plugin 17 | Plugin=SysColor 18 | DisplayType=RGB 19 | ColorType=WIN8 20 | 21 | [MeasureH] 22 | Measure=Time 23 | Format=%I 24 | 25 | [MeasureM] 26 | Measure=Time 27 | Format=%M 28 | 29 | [MeterH] 30 | Meter=String 31 | MeasureName=MeasureH 32 | MeasureName2=MeasureM 33 | X=200 34 | Y=100 35 | W=400 36 | FontSize=100 37 | FontColor=[AccentColor],255 38 | FontFace=#FONT# 39 | AntiAlias=1 40 | StringStyle=Bold 41 | StringAlign=CenterCenter 42 | DynamicVariables=1 43 | Text=%1:%2 44 | -------------------------------------------------------------------------------- /Digital.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | BackgroundMode=1 3 | Update=100 4 | 5 | [Metadata] 6 | Name=Material you Clock 7 | Description=Material You Android clock widget for Windows 8 | Tags=clock ,windows ,android ,materialyou ,material 9 | 10 | ============================================================ 11 | 12 | [Variables] 13 | FONT=Google Sans 14 | 15 | [AccentColor] 16 | Measure=Plugin 17 | Plugin=SysColor 18 | DisplayType=RGB 19 | ColorType=WIN8 20 | 21 | [MeasureH] 22 | Measure=Time 23 | Format=%I 24 | 25 | [MeasureM] 26 | Measure=Time 27 | Format=%M 28 | 29 | [MeterH] 30 | Meter=String 31 | MeasureName=MeasureH 32 | MeasureName2=MeasureM 33 | X=0 34 | Y=0 35 | W=400 36 | FontSize=100 37 | FontColor=[AccentColor],255 38 | FontFace=#FONT# 39 | AntiAlias=1 40 | StringStyle=Bold 41 | StringAlign=Left 42 | DynamicVariables=1 43 | Text=%1:%2 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # materialyou-clock 2 | MaterialYou Clock for windows 3 | 4 | ![ezgif com-video-to-gif](https://user-images.githubusercontent.com/68902530/235847006-56889d3c-1ef9-4acb-940d-d51720bf9ca7.gif) 5 | 6 | ![image](https://user-images.githubusercontent.com/68902530/235762836-d0e30f26-7650-4164-a381-d3230b84e050.png) 7 | 8 | Now also with a digital clock 9 | ![image](https://user-images.githubusercontent.com/68902530/236023186-e7117585-f819-42cc-a570-06497b005ec0.png) 10 | 11 | [Discussion on Telegram : TIDWIB](https://t.me/tidwib) 12 | --------------------------------------------------------------------------------