├── .gitattributes ├── .github └── workflows │ └── Dynamic-Readme.yml ├── @Resources ├── @Structure │ └── Occupier.file ├── Actions │ ├── AHKv1.exe │ ├── CloseScript.ahk │ ├── InstallData.ini │ ├── Installer.ahk │ └── nircmd.exe ├── Export │ └── Tech.png ├── Fonts │ ├── AstroSpace-0Wl3o.otf │ ├── AstroSpace-eZ2Bg.ttf │ ├── Azonix-1VB0.otf │ ├── IBMPlexSans-Regular.ttf │ ├── Martel-Regular.ttf │ ├── Metropolis-Light.otf │ ├── Metropolis-Regular.otf │ ├── Metropolis-SemiBold.otf │ ├── OpenSans-Regular.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ ├── Poppins-SemiBold.ttf │ ├── Poppins-Thin.ttf │ ├── Raleway-VariableFont_wght.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── Runic-Regular.otf │ ├── SF Pro Display.OTF │ ├── SFPRODISPLAYBOLD.OTF │ ├── SFPRODISPLAYMEDIUM.OTF │ ├── Sf Pro Rounded.ttf │ ├── samsungsharpsans-bold.otf │ ├── samsungsharpsans-medium.otf │ └── samsungsharpsans.otf ├── Icons │ ├── Blur.png │ ├── Cloud.png │ ├── Heart.png │ ├── HeartFull.png │ ├── Hori.png │ ├── JD Weather Icons │ │ ├── Shadow0 │ │ │ ├── clear-day.png │ │ │ ├── clear-night.png │ │ │ ├── cloudy-day.png │ │ │ ├── cloudy-night.png │ │ │ ├── cloudy.png │ │ │ ├── fog-day.png │ │ │ ├── fog-night.png │ │ │ ├── fog.png │ │ │ ├── partly-cloudy-day.png │ │ │ ├── partly-cloudy-night.png │ │ │ ├── rain-day.png │ │ │ ├── rain-night.png │ │ │ ├── rain.png │ │ │ ├── sleet-day.png │ │ │ ├── sleet-night.png │ │ │ ├── sleet.png │ │ │ ├── snow-day.png │ │ │ ├── snow-night.png │ │ │ ├── snow.png │ │ │ ├── storm-day.png │ │ │ ├── storm-night.png │ │ │ ├── storm.png │ │ │ ├── unknown.png │ │ │ └── windy.png │ │ └── Shadow1 │ │ │ ├── clear-day.png │ │ │ ├── clear-night.png │ │ │ ├── cloudy-day.png │ │ │ ├── cloudy-night.png │ │ │ ├── cloudy.png │ │ │ ├── fog-day.png │ │ │ ├── fog-night.png │ │ │ ├── fog.png │ │ │ ├── partly-cloudy-day.png │ │ │ ├── partly-cloudy-night.png │ │ │ ├── rain-day.png │ │ │ ├── rain-night.png │ │ │ ├── rain.png │ │ │ ├── sleet-day.png │ │ │ ├── sleet-night.png │ │ │ ├── sleet.png │ │ │ ├── snow-day.png │ │ │ ├── snow-night.png │ │ │ ├── snow.png │ │ │ ├── storm-day.png │ │ │ ├── storm-night.png │ │ │ ├── storm.png │ │ │ ├── unknown.png │ │ │ └── windy.png │ ├── Left.png │ ├── Music.png │ ├── Right.png │ ├── Shadow.png │ └── Vert.png ├── Images │ ├── Overlay.png │ ├── Preview │ │ ├── 16Preview.png │ │ ├── ArcPreview.png │ │ ├── CenterPreview.png │ │ ├── CircTechPreview.png │ │ ├── GraphPreview.png │ │ ├── LightPreview.png │ │ ├── MeasurePreview.png │ │ ├── Render │ │ │ ├── 16Blur.png │ │ │ ├── 16Color.png │ │ │ ├── Bar.png │ │ │ ├── Blur.png │ │ │ ├── Color.png │ │ │ ├── Grey.png │ │ │ └── Shadow.png │ │ ├── RenderBoxPreview.png │ │ ├── RenderPreview.png │ │ ├── SmartPreview.png │ │ ├── TechPreview.png │ │ └── TextPreview.png │ ├── Tech.png │ ├── Tech.svg │ └── TechPlainSVG.svg ├── Includes │ ├── GlobalNP.inc │ ├── GlobalStyles.inc │ ├── GlobalWNP.inc │ ├── GlobalWeather.inc │ └── WallpaperCheck.inc ├── PatchNoteVar.inc ├── Vars.inc └── Version.inc ├── @Start ├── DownloadFile │ └── Parsed.inc ├── Logic.lua ├── Logo.png ├── Main.ini └── ModularClocks.png ├── Core ├── #page.inc ├── Addons.inc ├── Appearance.inc ├── Appearance │ ├── 16.inc │ ├── Arc.inc │ ├── Center.inc │ ├── Graph.inc │ ├── Light.inc │ ├── Measure.inc │ ├── Smart.inc │ ├── Tech.inc │ └── Text.inc ├── DropDown │ ├── 16Font.inc │ └── Rotation.inc ├── General.inc ├── PatchNote │ └── Main.inc ├── Render.inc └── Render │ ├── Blur.inc │ ├── Color.inc │ └── Shadow.inc ├── LICENSE ├── Main ├── Main.ini └── Styles │ ├── 16.inc │ ├── Arc.inc │ ├── Center.inc │ ├── CircTech.inc │ ├── CircTechUnpatched.inc │ ├── Graph.inc │ ├── Light.inc │ ├── Measure.inc │ ├── Render │ ├── 16 │ │ ├── Blur.inc │ │ └── Color.inc │ ├── Center │ │ ├── Blur.inc │ │ ├── Color.inc │ │ └── Shadow.inc │ ├── Measure │ │ ├── Blur.inc │ │ ├── Color.inc │ │ ├── Hori.inc │ │ ├── Shadow.inc │ │ └── Vert.inc │ ├── Smart │ │ ├── Blur.inc │ │ ├── Chameleon.inc │ │ └── Shadow.inc │ └── Text │ │ ├── Blur.inc │ │ ├── Color.inc │ │ └── Shadow.inc │ ├── Smart.inc │ ├── Tech.inc │ ├── Text.inc │ └── Vars │ ├── 16.inc │ ├── Arc.inc │ ├── Center.inc │ ├── CircTech.inc │ ├── Graph.inc │ ├── Light.inc │ ├── Measure.inc │ ├── Smart.inc │ ├── Tech.inc │ └── Text.inc ├── ModularWorkspace.code-workspace └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/workflows/Dynamic-Readme.yml: -------------------------------------------------------------------------------- 1 | name: "📄 Dynamic ReadME" 2 | 3 | env: 4 | VS_WORKFLOW_TYPE: "dynamic-readme" 5 | 6 | on: 7 | workflow_dispatch: 8 | push: 9 | branches: 10 | - main 11 | paths: 12 | - README.md 13 | 14 | jobs: 15 | update_readme: 16 | name: "Render & Update ReadME" 17 | runs-on: ubuntu-latest 18 | steps: 19 | - name: "📥 Fetching Repository Contents" 20 | uses: actions/checkout@main 21 | 22 | - name: "💾 Github Repository Metadata" 23 | uses: varunsridharan/action-repository-meta@main 24 | env: 25 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 26 | 27 | - name: "💫 Update README.md" 28 | uses: "varunsridharan/action-dynamic-readme@main" 29 | with: 30 | GLOBAL_TEMPLATE_REPOSITORY: Jax-Core/ReadME-Template/Templates 31 | commit_message: ⏩ File Rebuilt by Github Actions - Dynamic ReadME 32 | files: | 33 | README.md 34 | env: 35 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 36 | -------------------------------------------------------------------------------- /@Resources/@Structure/Occupier.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/@Structure/Occupier.file -------------------------------------------------------------------------------- /@Resources/Actions/AHKv1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Actions/AHKv1.exe -------------------------------------------------------------------------------- /@Resources/Actions/CloseScript.ahk: -------------------------------------------------------------------------------- 1 | #NoTrayIcon 2 | 3 | IniRead, OutputVar, CloseInstance.ini, Variables, Module 4 | 5 | CloseScript(Name) 6 | { 7 | DetectHiddenWindows On 8 | SetTitleMatchMode RegEx 9 | IfWinExist, i)%Name%.* ahk_class AutoHotkey 10 | { 11 | WinClose 12 | WinWaitClose, i)%Name%.* ahk_class AutoHotkey, , 2 13 | If ErrorLevel 14 | return "Unable to close " . Name 15 | else 16 | return "Closed " . Name 17 | } 18 | else 19 | return Name . " not found" 20 | } 21 | 22 | CloseScript("Start.ahk") 23 | ExitApp -------------------------------------------------------------------------------- /@Resources/Actions/InstallData.ini: -------------------------------------------------------------------------------- 1 | [Data] 2 | DownloadLink=https://github.com/Jax-Core/JaxCore/releases/download/v00011/JaxCore_v00011.rmskin 3 | SaveLocation=C:\Users\enhan\Documents\Rainmeter\Skins\#CoreUpdater\@Resources\Actions 4 | -------------------------------------------------------------------------------- /@Resources/Actions/Installer.ahk: -------------------------------------------------------------------------------- 1 | #SingleInstance, Force 2 | SendMode Input 3 | SetWorkingDir, %A_ScriptDir% 4 | 5 | IniRead, SaveLocation, InstallData.ini, Data, SaveLocation 6 | IniRead, DownloadLink, InstallData.ini, Data, DownloadLink 7 | 8 | SplashTextOn , 400, 100, Rainmeter, "Downloading skin..." 9 | UrlDownloadToFile, %DownloadLink%, %SaveLocation%\INSTALL.rmskin 10 | SplashTextOff 11 | Run, INSTALL.rmskin 12 | WinWait, Rainmeter Skin Installer 13 | Sleep, 100 14 | Send, {Enter} 15 | 16 | ExitApp -------------------------------------------------------------------------------- /@Resources/Actions/nircmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Actions/nircmd.exe -------------------------------------------------------------------------------- /@Resources/Export/Tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Export/Tech.png -------------------------------------------------------------------------------- /@Resources/Fonts/AstroSpace-0Wl3o.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/AstroSpace-0Wl3o.otf -------------------------------------------------------------------------------- /@Resources/Fonts/AstroSpace-eZ2Bg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/AstroSpace-eZ2Bg.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Azonix-1VB0.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Azonix-1VB0.otf -------------------------------------------------------------------------------- /@Resources/Fonts/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Martel-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Martel-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Metropolis-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Metropolis-Light.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Metropolis-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Metropolis-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Metropolis-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Metropolis-SemiBold.otf -------------------------------------------------------------------------------- /@Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Raleway-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Raleway-VariableFont_wght.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Runic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Runic-Regular.otf -------------------------------------------------------------------------------- /@Resources/Fonts/SF Pro Display.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/SF Pro Display.OTF -------------------------------------------------------------------------------- /@Resources/Fonts/SFPRODISPLAYBOLD.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/SFPRODISPLAYBOLD.OTF -------------------------------------------------------------------------------- /@Resources/Fonts/SFPRODISPLAYMEDIUM.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/SFPRODISPLAYMEDIUM.OTF -------------------------------------------------------------------------------- /@Resources/Fonts/Sf Pro Rounded.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/Sf Pro Rounded.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/samsungsharpsans-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/samsungsharpsans-bold.otf -------------------------------------------------------------------------------- /@Resources/Fonts/samsungsharpsans-medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/samsungsharpsans-medium.otf -------------------------------------------------------------------------------- /@Resources/Fonts/samsungsharpsans.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Fonts/samsungsharpsans.otf -------------------------------------------------------------------------------- /@Resources/Icons/Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Blur.png -------------------------------------------------------------------------------- /@Resources/Icons/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Cloud.png -------------------------------------------------------------------------------- /@Resources/Icons/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Heart.png -------------------------------------------------------------------------------- /@Resources/Icons/HeartFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/HeartFull.png -------------------------------------------------------------------------------- /@Resources/Icons/Hori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Hori.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/clear-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/clear-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/cloudy.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/fog-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/fog-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/fog-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/fog-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/fog.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/partly-cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/partly-cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/rain-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/rain-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/rain-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/rain-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/rain.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/sleet-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/sleet-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/sleet-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/sleet-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/sleet.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/snow-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/snow-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/snow-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/snow-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/snow.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/storm-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/storm-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/storm-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/storm-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/storm.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/unknown.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow0/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow0/windy.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/clear-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/clear-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/clear-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/clear-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/cloudy.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/fog-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/fog-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/fog-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/fog-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/fog.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/partly-cloudy-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/partly-cloudy-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/partly-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/partly-cloudy-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/rain-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/rain-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/rain-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/rain-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/rain.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/sleet-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/sleet-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/sleet-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/sleet-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/sleet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/sleet.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/snow-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/snow-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/snow-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/snow-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/snow.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/storm-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/storm-day.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/storm-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/storm-night.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/storm.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/unknown.png -------------------------------------------------------------------------------- /@Resources/Icons/JD Weather Icons/Shadow1/windy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/JD Weather Icons/Shadow1/windy.png -------------------------------------------------------------------------------- /@Resources/Icons/Left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Left.png -------------------------------------------------------------------------------- /@Resources/Icons/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Music.png -------------------------------------------------------------------------------- /@Resources/Icons/Right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Right.png -------------------------------------------------------------------------------- /@Resources/Icons/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Shadow.png -------------------------------------------------------------------------------- /@Resources/Icons/Vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Icons/Vert.png -------------------------------------------------------------------------------- /@Resources/Images/Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Overlay.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/16Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/16Preview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/ArcPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/ArcPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/CenterPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/CenterPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/CircTechPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/CircTechPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/GraphPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/GraphPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/LightPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/LightPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/MeasurePreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/MeasurePreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/16Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/16Blur.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/16Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/16Color.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/Bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/Bar.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/Blur.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/Color.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/Grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/Grey.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/Render/Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/Render/Shadow.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/RenderBoxPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/RenderBoxPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/RenderPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/RenderPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/SmartPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/SmartPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/TechPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/TechPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Preview/TextPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Preview/TextPreview.png -------------------------------------------------------------------------------- /@Resources/Images/Tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Images/Tech.png -------------------------------------------------------------------------------- /@Resources/Images/Tech.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 41 | 43 | 46 | 50 | 54 | 55 | 63 | 68 | 69 | 80 | 83 | 87 | 91 | 92 | 100 | 104 | 105 | 116 | 124 | 128 | 129 | 138 | 139 | 152 | 157 | 163 | 170 | 173 | 177 | 181 | 182 | 191 | 192 | 197 | 200 | 203 | 209 | 214 | 219 | 220 | 230 | 240 | 241 | 242 | 243 | -------------------------------------------------------------------------------- /@Resources/Images/TechPlainSVG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 15 | 17 | 21 | 25 | 26 | 32 | 37 | 38 | 40 | 44 | 48 | 49 | 56 | 59 | 60 | 70 | 77 | 80 | 81 | 89 | 90 | 98 | 101 | 105 | 112 | 115 | 119 | 123 | 124 | 133 | 134 | 137 | 140 | 143 | 147 | 151 | 155 | 156 | 164 | 172 | 173 | 174 | 175 | -------------------------------------------------------------------------------- /@Resources/Includes/GlobalNP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Includes/GlobalNP.inc -------------------------------------------------------------------------------- /@Resources/Includes/GlobalStyles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Includes/GlobalStyles.inc -------------------------------------------------------------------------------- /@Resources/Includes/GlobalWNP.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Includes/GlobalWNP.inc -------------------------------------------------------------------------------- /@Resources/Includes/GlobalWeather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Includes/GlobalWeather.inc -------------------------------------------------------------------------------- /@Resources/Includes/WallpaperCheck.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Includes/WallpaperCheck.inc -------------------------------------------------------------------------------- /@Resources/PatchNoteVar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/PatchNoteVar.inc -------------------------------------------------------------------------------- /@Resources/Vars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Vars.inc -------------------------------------------------------------------------------- /@Resources/Version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Resources/Version.inc -------------------------------------------------------------------------------- /@Start/DownloadFile/Parsed.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Start/DownloadFile/Parsed.inc -------------------------------------------------------------------------------- /@Start/Logic.lua: -------------------------------------------------------------------------------- 1 | function check() 2 | mVer = SKIN:GetMeasure('mVer') 3 | CoreVer = tonumber(SKIN:GetVariable('Core.Ver', '00000')) 4 | ParsedVer = tonumber(mVer:GetStringValue()) 5 | ParsedVerFull = mVer:GetStringValue() 6 | SavePos = SKIN:GetVariable('@')..'Actions\\InstallData.ini' 7 | SaveLocation = SKIN:GetVariable('@')..'Actions' 8 | if ParsedVer == CoreVer then 9 | print('Up2date - '..ParsedVer..'=='..CoreVer) 10 | SKIN:Bang('!UpdateMeasure', 'JaxCoreYes') 11 | elseif ParsedVer <= CoreVer then 12 | print('Beta - '..ParsedVer..'<='..CoreVer) 13 | SKIN:Bang('!UpdateMeasure', 'JaxCoreYes') 14 | else 15 | print('Update required - '..ParsedVer..'>='..CoreVer) 16 | SKIN:Bang('!WriteKeyValue', 'Data', 'DownloadLink', 'https://github.com/Jax-Core/JaxCore/releases/download/v'..ParsedVerFull..'/JaxCore_v'..ParsedVerFull..'.rmskin', SavePos) 17 | SKIN:Bang('!WriteKeyValue', 'Data', 'SaveLocation', SaveLocation, SavePos) 18 | SKIN:Bang('!UpdateMeasure', 'JaxCoreNo') 19 | end 20 | end -------------------------------------------------------------------------------- /@Start/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Start/Logo.png -------------------------------------------------------------------------------- /@Start/Main.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Update=-1 3 | 4 | DefaultKeepOnScreen=0 5 | 6 | [Variables] 7 | Parsed=0 8 | 9 | [CheckParsed] 10 | Measure=String 11 | String=#Parsed# 12 | IFmatch=0 13 | IfMatchaction=[!WriteKeyValue Variables Parsed 1][!Delay 1000][!Refresh] 14 | IfNotMatchAction=[!WriteKeyValue Variables Parsed 0] 15 | 16 | [GetStart] 17 | Measure=WebParser 18 | URL=https://raw.githubusercontent.com/Jax-Core/JaxCore/main/CoreShell/Start/Main.inc 19 | Debug=2 20 | Debug2File=DownloadFile\Parsed.inc 21 | 22 | [DummyString] 23 | Meter=String 24 | 25 | ; ---------------------------------------------------------------------------- ; 26 | ; Parsed ; 27 | ; ---------------------------------------------------------------------------- ; 28 | 29 | @includeParsed=DownloadFile\Parsed.inc 30 | -------------------------------------------------------------------------------- /@Start/ModularClocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/@Start/ModularClocks.png -------------------------------------------------------------------------------- /Core/#page.inc: -------------------------------------------------------------------------------- 1 | [PageList.Configuration] 2 | Meter=String 3 | MeterStyle=Set.String:S | PageList.Category:S 4 | Text=CONFIGURATION 5 | 6 | [Info.Shape] 7 | Meter=Shape 8 | MeterStyle=PageList.Item.Shape:S 9 | [Info.Icon.String] 10 | Meter=String 11 | Text="[\xe88e]" 12 | MeterStyle=Set.String:S | PageList.Item.Icon.String:S 13 | [Info.String] 14 | Meter=String 15 | Text=Info 16 | MeterStyle=Set.String:S | PageList.Item.String:S 17 | 18 | [General.Shape] 19 | Meter=Shape 20 | MeterStyle=PageList.Item.Shape:S 21 | [General.Icon.String] 22 | Meter=String 23 | Text="[\xe8b8]" 24 | MeterStyle=Set.String:S | PageList.Item.Icon.String:S 25 | [General.String] 26 | Meter=String 27 | Text=General 28 | MeterStyle=Set.String:S | PageList.Item.String:S 29 | [PageList.looknfeel] 30 | Meter=String 31 | MeterStyle=Set.String:S | PageList.Category:S 32 | Text=LOOK N' FEEL 33 | 34 | [Appearance.Shape] 35 | Meter=Shape 36 | MeterStyle=PageList.Item.Shape:S 37 | [Appearance.Icon.String] 38 | Meter=String 39 | Text="[\xe243]" 40 | MeterStyle=Set.String:S | PageList.Item.Icon.String:S 41 | [Appearance.String] 42 | Meter=String 43 | Text=Style options 44 | MeterStyle=Set.String:S | PageList.Item.String:S 45 | 46 | [AddOns.Shape] 47 | Meter=Shape 48 | MeterStyle=PageList.Item.Shape:S 49 | [AddOns.Icon.String] 50 | Meter=String 51 | Text="[\xe53b]" 52 | MeterStyle=Set.String:S | PageList.Item.Icon.String:S 53 | [AddOns.String] 54 | Meter=String 55 | Text=3D Overlay 56 | MeterStyle=Set.String:S | PageList.Item.String:S 57 | 58 | [Render.Shape] 59 | Meter=Shape 60 | MeterStyle=PageList.Item.Shape:S 61 | Group=PageList | RenderPageSwitcher 62 | Hidden=1 63 | [Render.Icon.String] 64 | Meter=String 65 | Text="[\xe3a2]" 66 | MeterStyle=Set.String:S | PageList.Item.Icon.String:S 67 | Group=PageList | RenderPageSwitcher 68 | Hidden=1 69 | [Render.String] 70 | Meter=String 71 | Text=Render options 72 | MeterStyle=Set.String:S | PageList.Item.String:S 73 | Group=PageList | RenderPageSwitcher 74 | Hidden=1 75 | 76 | [m.CheckHasRender] 77 | Measure=String 78 | String=#Style# 79 | IfMatch=Center|Measure|Text 80 | IfMatchAction=[!ShowMeterGroup RenderPageSwitcher] -------------------------------------------------------------------------------- /Core/Addons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Addons.inc -------------------------------------------------------------------------------- /Core/Appearance.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance.inc -------------------------------------------------------------------------------- /Core/Appearance/16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/16.inc -------------------------------------------------------------------------------- /Core/Appearance/Arc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Arc.inc -------------------------------------------------------------------------------- /Core/Appearance/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Center.inc -------------------------------------------------------------------------------- /Core/Appearance/Graph.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Graph.inc -------------------------------------------------------------------------------- /Core/Appearance/Light.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Light.inc -------------------------------------------------------------------------------- /Core/Appearance/Measure.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Measure.inc -------------------------------------------------------------------------------- /Core/Appearance/Smart.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Smart.inc -------------------------------------------------------------------------------- /Core/Appearance/Tech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Tech.inc -------------------------------------------------------------------------------- /Core/Appearance/Text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Appearance/Text.inc -------------------------------------------------------------------------------- /Core/DropDown/16Font.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/DropDown/16Font.inc -------------------------------------------------------------------------------- /Core/DropDown/Rotation.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/DropDown/Rotation.inc -------------------------------------------------------------------------------- /Core/General.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/General.inc -------------------------------------------------------------------------------- /Core/PatchNote/Main.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/PatchNote/Main.inc -------------------------------------------------------------------------------- /Core/Render.inc: -------------------------------------------------------------------------------- 1 | ; ---------------------------------------------------------------------------- ; 2 | ; MeterStyle ; 3 | ; ---------------------------------------------------------------------------- ; 4 | [Item.Shape:S] 5 | X=(30*[Set.S]) 6 | Y=(35*[SEt.S])r 7 | Shape=Rectangle 0,0,([ContentContainer:W]-#Set.P#),(50*[SEt.S]),(2*[Set.S]) | StrokeWidth 0 | Extend Fill 8 | Fill=Fill Color #Set.Sec_Color# 9 | Stroke=Stroke Color #Set.Ter_Color# 10 | MouseOverAction=[!SetOption #CURRENTSECTION# Fill "Fill Color #Set.Ter_Color#"][!SetOption #CURRENTSECTION# Stroke "Stroke Color #Set.Subtext_Color#,50"][!UpdateMeter #CURRENTSECTION#][!Redraw] 11 | MouseLeaveAction=[!SetOption #CURRENTSECTION# Fill "Fill Color #Set.Sec_Color#"][!SetOption #CURRENTSECTION# Stroke "Stroke Color #Set.Ter_Color#"][!UpdateMeter #CURRENTSECTION#][!Redraw] 12 | DynamicVariables=1 13 | Container=ContentContainer 14 | [Item.StringIcon:S] 15 | X=(50*[Set.S]/2)r 16 | Y=(50*[Set.S]/2)r 17 | StringAlign=leftCenter 18 | FontFace=Segoe Fluent Icons 19 | Container=ContentContainer 20 | [Item.String:S] 21 | X=(#Set.P#/2)R 22 | Y=r 23 | StringAlign=LeftCenter 24 | Container=ContentContainer 25 | [Item.Arrow.String:S] 26 | X=([ContentContainer:W]-#Set.P#) 27 | Y=r 28 | StringAlign=RightCenter 29 | Text=> 30 | Container=ContentContainer 31 | 32 | ; ---------------------------------------------------------------------------- ; 33 | ; Content ; 34 | ; ---------------------------------------------------------------------------- ; 35 | 36 | [Look] 37 | Meter=String 38 | Text=Current render mode: #Render# for #Style# style 39 | MeterStyle=Set.String:S | Set.OptionCat:S 40 | 41 | [Item01.Shape] 42 | Meter=Shape 43 | Leftmouseupaction=["https://jaxcore.gitbook.io/core/getting-started/additional-requisites#imagemagick"] 44 | MeterStyle=Item.Shape:S 45 | [Item01.StringIcon] 46 | Meter=String 47 | Text=[\xe7ba] 48 | MeterStyle=Set.String:S | Item.StringIcon:S 49 | [Item01.String] 50 | Meter=String 51 | Text=Blur render requires ImageMagick! Click here to learn how to install it. 52 | MeterStyle=Set.String:S | Item.String:S 53 | [Item01.Arrow.String] 54 | Meter=String 55 | MeterStyle=Set.String:S | Item.Arrow.String:S 56 | 57 | [RenderStyle] 58 | X=(15*[Set.S])R 59 | Y=r 60 | W=(([ContentContainer:W]-75*[Set.S])/3) 61 | DynamicVariables=1 62 | Container=ContentContainer 63 | ImageName="#SKINSPATH#ModularCLocks\@Resources\Images\Preview\Render\#CURRENTSECTION#.png" 64 | Leftmouseupaction=[!WriteKeyValue Variables Render #CURRENTSECTION# "#Sec.SaveLocation#"][!Refresh][!UpdateMeasure Auto_Refresh:M] 65 | [Color] 66 | Meter=Image 67 | X=(30*[Set.S]) 68 | Y=(55*[Set.S])r 69 | MeterStyle=RenderStyle 70 | [Shadow] 71 | Meter=Image 72 | MeterStyle=RenderStyle 73 | [Blur] 74 | Meter=Image 75 | Leftmouseupaction=[!CommandMeasure Func "PopupImageMagick('#CURRENTSECTION#', 'BangToRun')"] 76 | BangToRun=[!WriteKeyValue Variables Render #CURRENTSECTION# "#Sec.SaveLocation#"][!Refresh][!UpdateMeasure Auto_Refresh:M] 77 | MeterStyle=RenderStyle 78 | ; [Bar] 79 | ; Meter=Image 80 | ; MeterStyle=RenderStyle 81 | ; ImageAlpha=50 82 | ; Leftmouseupaction=[] 83 | 84 | ;================================================================================================================================================================================ 85 | 86 | [SmartOptipojs] 87 | Meter=String 88 | Text=#Render# Options 89 | MeterStyle=Set.String:S | Set.OptionCat:S 90 | 91 | @includeCore=#SKINSPATH##Skin.Name#\Core\Render\#Render#.inc 92 | ; ---------------------------------------------------------------------------- ; 93 | ; Anchor ; 94 | ; ---------------------------------------------------------------------------- ; 95 | 96 | 97 | [AnchorSuppli] 98 | Meter=String 99 | Container=ContentContainer 100 | x=r 101 | Y=R 102 | 103 | @includeVars=#SKINSPATH##Skin.Name#\Main\Styles\Vars\#Style#.inc -------------------------------------------------------------------------------- /Core/Render/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Render/Blur.inc -------------------------------------------------------------------------------- /Core/Render/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Render/Color.inc -------------------------------------------------------------------------------- /Core/Render/Shadow.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Core/Render/Shadow.inc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 JaxCore 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Main/Main.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Main.ini -------------------------------------------------------------------------------- /Main/Styles/16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/16.inc -------------------------------------------------------------------------------- /Main/Styles/Arc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Arc.inc -------------------------------------------------------------------------------- /Main/Styles/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Center.inc -------------------------------------------------------------------------------- /Main/Styles/CircTech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/CircTech.inc -------------------------------------------------------------------------------- /Main/Styles/CircTechUnpatched.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/CircTechUnpatched.inc -------------------------------------------------------------------------------- /Main/Styles/Graph.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Graph.inc -------------------------------------------------------------------------------- /Main/Styles/Light.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Light.inc -------------------------------------------------------------------------------- /Main/Styles/Measure.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Measure.inc -------------------------------------------------------------------------------- /Main/Styles/Render/16/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/16/Blur.inc -------------------------------------------------------------------------------- /Main/Styles/Render/16/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/16/Color.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Center/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Center/Blur.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Center/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Center/Color.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Center/Shadow.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Center/Shadow.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Measure/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Measure/Blur.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Measure/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Measure/Color.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Measure/Hori.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Measure/Hori.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Measure/Shadow.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Measure/Shadow.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Measure/Vert.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Measure/Vert.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Smart/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Smart/Blur.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Smart/Chameleon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Smart/Chameleon.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Smart/Shadow.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Smart/Shadow.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Text/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Text/Blur.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Text/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Text/Color.inc -------------------------------------------------------------------------------- /Main/Styles/Render/Text/Shadow.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Render/Text/Shadow.inc -------------------------------------------------------------------------------- /Main/Styles/Smart.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Smart.inc -------------------------------------------------------------------------------- /Main/Styles/Tech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Tech.inc -------------------------------------------------------------------------------- /Main/Styles/Text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Text.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/16.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/16.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Arc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Arc.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Center.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Center.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/CircTech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/CircTech.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Graph.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Graph.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Light.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Light.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Measure.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Measure.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Smart.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Smart.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Tech.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Tech.inc -------------------------------------------------------------------------------- /Main/Styles/Vars/Text.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jax-Core/ModularClocks/f61896dc1da6a3f0e47a1ba3d480a6fdd889b4d5/Main/Styles/Vars/Text.inc -------------------------------------------------------------------------------- /ModularWorkspace.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": {} 8 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 | Logo 6 | 7 | 8 |

ModularClocks

9 |

10 | Gallery of animated & modern clock widgets 11 |
12 | Help, Report Bugs & Request Features » 13 |

14 |
15 | 16 | 17 | 18 |

19 | Latest by date 20 | Discord 21 | Github 22 |

23 | 24 | 25 | 26 | ## About 27 | 28 | ![ModularClocks](https://raw.githubusercontent.com/Jax-Core/ReadME-Template/main/Resources/Splash/ModularClocks.png) 29 | 30 | 31 | **ModularClocks** is a gallery of hand-crafted clocks & weather widgets. 32 | 33 | 34 | 35 | ## Features 36 | * 5 Clock Presets 37 | * Animated Styles 38 | * Resizable Styles 39 | * Fully scalable 40 | 41 | 42 | 43 | ## Getting Started 44 | 45 | ### Prerequisites 46 | - **Windows 10** or above 47 | > For older systems, **Powershell v5.1 or newer** is required. Upgrade powershell **[here](https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/install/installing-windows-powershell?view=powershell-7.2#upgrading-existing-windows-powershell)**! 48 | 49 | ### Installation 50 | Run the following command in Powershell to download the latest version of JaxCore. 51 | 52 | (To launch Powershell as an Admin: `Win + R` -> `powershell` -> Press `CTRL + SHIFT + ENTER` on your keyboard. Powershell can also be launched via Windows Search.) 53 | 54 | ``` 55 | iwr -useb "https://raw.githubusercontent.com/Jax-Core/JaxCore/master/CoreInstaller.ps1" | iex 56 | ``` 57 | 58 | > Alternatively you can download it from the [website](https://jax-core.github.io/) 59 | 60 | After you've proceeded through the welcome screen, select `ModularClocks` (might have to scroll down) and click `Install`. It will appear in the library page after that. 61 |
62 |
63 | 64 | 65 | 66 | ### Configuration 67 | Use the JaxCore menu to configure ModularClocks. 68 | For more information, visit [JaxCore's documentation](https://jaxcore.gitbook.io/core/) 69 |
70 |
71 | 72 | 73 | ## Need assistance? 74 | * Join the [CoreCommunity Discord Server](https://discord.gg/JmgehPSDD6) for help 75 | * or [Create an issue](https://github.com/Jax-Core/ModularClocks) 76 | 77 | ## Say Hi! 78 | * Follow me on 👨‍💻 [Github](https://github.com/EnhancedJax) and stay updated on new things that I make 79 | * You can also watch me on 🐦 [DeviantArt](https://www.deviantart.com/jaxoriginals) instead 80 | * Message me on 🗨️ [Discord](https://discord.gg/JmgehPSDD6) 81 | 82 | --- 83 | 84 |

85 | Made with ❤️ by Jax 86 |

87 | 88 |

89 | --------------------------------------------------------------------------------