├── @Resources ├── Addons │ ├── RainRGB4.exe │ └── RainRGB4Readme.txt ├── Fonts │ ├── Blacksword.otf │ ├── Fivo Sans Light.otf │ ├── GoogleSans-Bold.ttf │ ├── GoogleSans-Regular.ttf │ ├── JDWI-MISC.ttf │ ├── JDWI-MOON.ttf │ ├── JDWI-WIND.ttf │ ├── JDWI.otf │ ├── Metropolis Extra Bold.ttf │ ├── Morganite Bold.ttf │ ├── Morganite Book.ttf │ ├── ProductSansBold.ttf │ ├── Segoe Fluent Icons.ttf │ ├── Segoe UI Bold.ttf │ └── Tuesday Night.otf ├── IMG_7112.PNG ├── IMG_7198.PNG ├── IMG_7337.PNG ├── IMG_7340.PNG ├── IMG_7342.PNG ├── IMG_7344.PNG ├── IMG_7433.PNG ├── IMG_7436.PNG ├── IMG_7442.PNG ├── IMG_7450.PNG ├── IMG_7476.PNG ├── IMG_7482.PNG ├── IMG_7485.PNG ├── IMG_7488.PNG ├── Images │ ├── Clock │ │ ├── face-0.png │ │ ├── face-1.png │ │ ├── small-face-0.png │ │ └── small-face-1.png │ ├── Icons │ │ ├── Calendar.png │ │ ├── Clock.png │ │ ├── Monitor.png │ │ ├── Monterey.png │ │ ├── Music.png │ │ ├── Notes.png │ │ ├── Reminders.png │ │ ├── Sidebar0.ico │ │ ├── Sidebar1.ico │ │ ├── Timer.png │ │ ├── Volume.png │ │ └── Weather.png │ ├── Monitor │ │ ├── battery.png │ │ ├── cpu.png │ │ ├── disk.png │ │ ├── net.png │ │ └── ram.png │ ├── Music │ │ ├── back.png │ │ ├── music.png │ │ ├── next.png │ │ ├── pause.png │ │ ├── play.png │ │ └── stop.png │ ├── Reminders │ │ └── list.png │ ├── Settings │ │ ├── about.png │ │ ├── auto.png │ │ ├── battery.png │ │ ├── blur.png │ │ ├── color.png │ │ ├── dark.png │ │ ├── extras.png │ │ ├── language.png │ │ ├── light.png │ │ ├── support.png │ │ ├── theme.png │ │ └── widgets.png │ ├── Timer │ │ └── timer.png │ ├── Unlock │ │ ├── 0.png │ │ └── 1.png │ ├── Volume │ │ ├── Volume-1.png │ │ ├── Volume0.png │ │ ├── Volume1.png │ │ ├── Volume2.png │ │ └── Volume3.png │ └── Weather │ │ ├── 01d.png │ │ ├── 01n.png │ │ ├── 02d.png │ │ ├── 02n.png │ │ ├── 03d.png │ │ ├── 03n.png │ │ ├── 04d.png │ │ ├── 04n.png │ │ ├── 09d.png │ │ ├── 09n.png │ │ ├── 10d.png │ │ ├── 10n.png │ │ ├── 11d — копия.png │ │ ├── 11n.png │ │ ├── 13d.png │ │ ├── 13n.png │ │ ├── 50d.png │ │ └── 50n.png ├── JDWI.ttf ├── Language │ └── Language.inc ├── Languages │ ├── all.inc │ ├── de │ │ ├── Extras │ │ │ └── Sidebar.inc │ │ ├── Settings.inc │ │ ├── Settings │ │ │ ├── About.inc │ │ │ ├── Appearence.inc │ │ │ ├── Battery.inc │ │ │ ├── Extras.inc │ │ │ ├── Language.inc │ │ │ └── Widgets.inc │ │ ├── Widget.inc │ │ └── Widgets │ │ │ ├── Calendar.inc │ │ │ ├── Clock.inc │ │ │ ├── Monitor.inc │ │ │ ├── Music.inc │ │ │ ├── Notes.inc │ │ │ ├── Reminders.inc │ │ │ ├── Timer.inc │ │ │ ├── Volume.inc │ │ │ └── Weather.inc │ ├── en │ │ ├── Extras │ │ │ └── Sidebar.inc │ │ ├── Settings.inc │ │ ├── Settings │ │ │ ├── About.inc │ │ │ ├── Appearence.inc │ │ │ ├── Battery.inc │ │ │ ├── Extras.inc │ │ │ ├── Language.inc │ │ │ └── Widgets.inc │ │ ├── Widget.inc │ │ └── Widgets │ │ │ ├── Calendar.inc │ │ │ ├── Clock.inc │ │ │ ├── Monitor.inc │ │ │ ├── Music.inc │ │ │ ├── Notes.inc │ │ │ ├── Reminders.inc │ │ │ ├── Timer.inc │ │ │ ├── Volume.inc │ │ │ └── Weather.inc │ ├── ru │ │ ├── Extras │ │ │ └── Sidebar.inc │ │ ├── Settings.inc │ │ ├── Settings │ │ │ ├── About.inc │ │ │ ├── Appearence.inc │ │ │ ├── Battery.inc │ │ │ ├── Extras.inc │ │ │ ├── Language.inc │ │ │ └── Widgets.inc │ │ ├── Widget.inc │ │ └── Widgets │ │ │ ├── Calendar.inc │ │ │ ├── Clock.inc │ │ │ ├── Monitor.inc │ │ │ ├── Music.inc │ │ │ ├── Notes.inc │ │ │ ├── Reminders.inc │ │ │ ├── Timer.inc │ │ │ ├── Volume.inc │ │ │ └── Weather.inc │ └── ua │ │ ├── Extras │ │ └── Sidebar.inc │ │ ├── Settings.inc │ │ ├── Settings │ │ ├── About.inc │ │ ├── Appearence.inc │ │ ├── Battery.inc │ │ ├── Extras.inc │ │ ├── Language.inc │ │ └── Widgets.inc │ │ ├── Widget.inc │ │ └── Widgets │ │ ├── Calendar.inc │ │ ├── Clock.inc │ │ ├── Monitor.inc │ │ ├── Music.inc │ │ ├── Notes.inc │ │ ├── Reminders.inc │ │ ├── Timer.inc │ │ ├── Volume.inc │ │ └── Weather.inc ├── MacifiedWindows.exe ├── OIP.jpeg ├── Plugins │ ├── 32bit │ │ └── SysColor.dll │ └── 64bit │ │ └── SysColor.dll ├── Resources │ ├── 1-alt.png │ ├── 1-modified.png │ ├── 1.jpg │ ├── 2-alt.png │ ├── 2-modified.png │ ├── 2.jpg │ ├── 3-alt.png │ ├── 3-modified.png │ ├── 3.jpg │ ├── 4-alt.png │ ├── 4-modified.png │ ├── 4.jpg │ ├── 5-alt.png │ ├── 5-modified.png │ ├── 5.jpg │ ├── 6-alt.png │ ├── 6-modified.png │ ├── 6.jpg │ ├── 7-alt.png │ ├── 7-modified.png │ ├── 7.jpg │ ├── 8-alt.png │ ├── 8-modified.png │ ├── 8.jpg │ └── IMG_6966.PNG ├── Scripts │ ├── Bases │ │ ├── Settings.inc │ │ ├── Widget.inc │ │ └── Window.inc │ ├── Clock.inc │ ├── Contexts │ │ ├── Languages.inc │ │ ├── Monitor.inc │ │ ├── Music.inc │ │ ├── Sidebar.inc │ │ ├── Timezones1.inc │ │ ├── Timezones2.inc │ │ ├── Timezones3.inc │ │ ├── Units.inc │ │ └── Widget.inc │ ├── Extras │ │ └── Unlock │ │ │ ├── Install.cmd │ │ │ ├── Install.lnk │ │ │ ├── Start.bat │ │ │ ├── State.txt │ │ │ ├── Stop.bat │ │ │ └── task.xml │ ├── Includes │ │ ├── Context.inc │ │ ├── Settings.inc │ │ ├── WhatsNew.inc │ │ ├── Widget.inc │ │ └── Window.inc │ ├── Music.inc │ ├── Processes │ │ └── ThemeUpdater.inc │ ├── Settings │ │ ├── About.inc │ │ ├── Advanced.inc │ │ ├── Appearence.inc │ │ ├── Appearence │ │ │ ├── AdvancedOptions.inc │ │ │ ├── ThemeOptions.inc │ │ │ └── ThemeSelector.inc │ │ ├── Battery.inc │ │ ├── Extras.inc │ │ ├── Language.inc │ │ ├── Region.inc │ │ ├── RegionOptions.inc │ │ ├── Sidebar.inc │ │ ├── Theme.inc │ │ ├── WhatsNew.inc │ │ └── Widgets.inc │ ├── Sizes │ │ ├── Large.inc │ │ ├── Medium.inc │ │ ├── Small.inc │ │ └── Wide.inc │ ├── Themes │ │ ├── Auto.inc │ │ ├── Blur.inc │ │ ├── Color.inc │ │ ├── Dark.inc │ │ └── Light.inc │ └── Widgets │ │ └── Music.inc ├── Skin Icons │ ├── 3 line.png │ ├── Blank.png │ ├── Brightness │ │ ├── brightness0.png │ │ ├── brightness1.png │ │ ├── brightness10.png │ │ ├── brightness11.png │ │ ├── brightness12.png │ │ ├── brightness13.png │ │ ├── brightness14.png │ │ ├── brightness15.png │ │ ├── brightness16.png │ │ ├── brightness17.png │ │ ├── brightness18.png │ │ ├── brightness19.png │ │ ├── brightness2.png │ │ ├── brightness20.png │ │ ├── brightness21.png │ │ ├── brightness3.png │ │ ├── brightness4.png │ │ ├── brightness5.png │ │ ├── brightness6.png │ │ ├── brightness7.png │ │ ├── brightness8.png │ │ └── brightness9.png │ ├── Control.png │ ├── IMG_7147.PNG │ ├── IMG_7154.PNG │ ├── Icon BG 2.png │ ├── Icon BG.png │ ├── Mask 2.png │ ├── Mask BG.png │ ├── Mask.png │ └── restart.png ├── Themes │ ├── auto.inc │ ├── color.inc │ ├── dark.inc │ └── light.inc ├── Variables.inc ├── Variables │ ├── Calendar.inc │ ├── Clock.inc │ ├── Global.inc │ ├── Layout.inc │ ├── Monitor.inc │ ├── Music.inc │ ├── Notes.inc │ ├── Reminders.inc │ ├── Timer.inc │ ├── Volume.inc │ └── Weather.inc └── pfp icons │ └── IMG_7198.PNG ├── Clock.ini ├── LICENSE ├── README.md ├── Themes └── Themes.ini ├── a.ini ├── b.ini ├── c.ini ├── d.ini ├── e.ini ├── f.ini ├── g.ini ├── h.ini └── music └── Wide.ini /@Resources/Addons/RainRGB4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Addons/RainRGB4.exe -------------------------------------------------------------------------------- /@Resources/Addons/RainRGB4Readme.txt: -------------------------------------------------------------------------------- 1 | RainRGB4.exe is Copyright 2010, 2011 by Jeffrey Morley 2 | Released under Creative Commons Attribution-Non-Commercial-Share Alike 3.0 3 | Version 4 - Sep 12, 2011 4 | 5 | RainRGB when called with the appropriate command line parameters will open a standard Windows color picker dialog. 6 | 7 | It will then change the desired color variable in the [Variables] section of any .inc / ini file and refresh either a single config or all when completed. This can be used in combination with @Include files to have a way to set the colors for an entire suite of skins, or with an individual .ini file to set the colors for a single skin. 8 | 9 | RainRGB4.exe may reside in any folder. 10 | 11 | Usage: 12 | RainRGB4.exe VarName=xxx FileName=xxx Alpha=xxx RefreshConfig=xxx 13 | 14 | Example as called from Rainmeter: 15 | 16 | SomeAction=["#ADDONSPATH#RainRGB\RainRGB.exe" "VarName=MyTextColor" "FileName=#CURRENTPATH#UserVariables.inc" "Alpha=200" "RefreshConfig=RainRGB"] 17 | 18 | You MUST put quotes around the call to the executable and each parameter. 19 | 20 | - VarName : REQUIRED 21 | Name of the variable you wish to set in the .inc / ini file. It must not contain spaces or use the # character. 22 | 23 | The variable must be defined in the .inc / .ini file under [Variables] 24 | 25 | - FileName : REQUIRED 26 | Full path and name of the .inc or .ini file you wish to change. RainRGB will read the file, and look for 27 | an entry for VarName in the [Variables] section. 28 | 29 | - Alpha : OPTIONAL 30 | Must be a decimal number from 0-255. Do not use hex numbers for this. If the entry in the .inc / ini file is in hex, RainRGB will detect this and convert as needed. This entire parameter may be left off if desired. If the entry in the .inc / ini has an alpha value on the setting, it will be preserved if you do not specify Alpha on this command line. 31 | 32 | - RefreshConfig : OPTIONAL 33 | This is the name(s) of the Rainmeter config (ex: Enigma\Sidebar) you wish to refresh after the variable has been set. 34 | 35 | If this entire parameter is left off, all currently loaded configs will be refreshed. You may specify multiple configs to refresh by using " | " as a separator. Example: "RefreshConfig=JSMorley\JSClock | JSMorley\JSWeather". The spaces before and after the "pipe" character are required. 36 | 37 | Notes: 38 | 39 | The variable must already exist in the .inc / ini file under [Variables] and be set to some value. This addon is to change variables, not create them. 40 | 41 | If the setting in the .inc / .ini file is in hex currently (ex: MyColor=FFFFFF or MyColor=FFFFFFFF) RainRGB will preserve this format. If the current setting in the .inc / ini is in RGB (ex: MyColor=255,255,255 or MyColor=255,255,255,255) RainRGB will preserve that format. 42 | 43 | To leave a parameter off, remove the entire "ParmName=ParmValue" entry. Do not set the parameter to "" (NULL) to achieve this. 44 | 45 | For example to call the addon without changing the alpha value, and refreshing all skins instead of a specific one: 46 | 47 | SomeAction=["#ADDONSPATH#RainRGB\RainRGB.exe" "VarName=MyTextColor" "FileName=#CURRENTPATH#UserVariables.inc"] 48 | 49 | Remember that VarName and FileName are REQUIRED. RainRGB will just silently exit without making any changes if they are missing. 50 | -------------------------------------------------------------------------------- /@Resources/Fonts/Blacksword.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Blacksword.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Fivo Sans Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Fivo Sans Light.otf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/GoogleSans-Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/GoogleSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/GoogleSans-Regular.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-MISC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/JDWI-MISC.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-MOON.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/JDWI-MOON.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI-WIND.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/JDWI-WIND.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/JDWI.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/JDWI.otf -------------------------------------------------------------------------------- /@Resources/Fonts/Metropolis Extra Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Metropolis Extra Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Morganite Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Morganite Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Morganite Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Morganite Book.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/ProductSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/ProductSansBold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Segoe Fluent Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Segoe Fluent Icons.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Segoe UI Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Segoe UI Bold.ttf -------------------------------------------------------------------------------- /@Resources/Fonts/Tuesday Night.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Fonts/Tuesday Night.otf -------------------------------------------------------------------------------- /@Resources/IMG_7112.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7112.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7198.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7198.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7337.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7337.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7340.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7340.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7342.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7342.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7344.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7344.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7433.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7433.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7436.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7436.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7442.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7442.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7450.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7450.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7476.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7476.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7482.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7482.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7485.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7485.PNG -------------------------------------------------------------------------------- /@Resources/IMG_7488.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/IMG_7488.PNG -------------------------------------------------------------------------------- /@Resources/Images/Clock/face-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Clock/face-0.png -------------------------------------------------------------------------------- /@Resources/Images/Clock/face-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Clock/face-1.png -------------------------------------------------------------------------------- /@Resources/Images/Clock/small-face-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Clock/small-face-0.png -------------------------------------------------------------------------------- /@Resources/Images/Clock/small-face-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Clock/small-face-1.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Calendar.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Clock.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Monitor.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Monterey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Monterey.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Music.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Notes.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Reminders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Reminders.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Sidebar0.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Sidebar0.ico -------------------------------------------------------------------------------- /@Resources/Images/Icons/Sidebar1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Sidebar1.ico -------------------------------------------------------------------------------- /@Resources/Images/Icons/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Timer.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Volume.png -------------------------------------------------------------------------------- /@Resources/Images/Icons/Weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Icons/Weather.png -------------------------------------------------------------------------------- /@Resources/Images/Monitor/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Monitor/battery.png -------------------------------------------------------------------------------- /@Resources/Images/Monitor/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Monitor/cpu.png -------------------------------------------------------------------------------- /@Resources/Images/Monitor/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Monitor/disk.png -------------------------------------------------------------------------------- /@Resources/Images/Monitor/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Monitor/net.png -------------------------------------------------------------------------------- /@Resources/Images/Monitor/ram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Monitor/ram.png -------------------------------------------------------------------------------- /@Resources/Images/Music/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/back.png -------------------------------------------------------------------------------- /@Resources/Images/Music/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/music.png -------------------------------------------------------------------------------- /@Resources/Images/Music/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/next.png -------------------------------------------------------------------------------- /@Resources/Images/Music/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/pause.png -------------------------------------------------------------------------------- /@Resources/Images/Music/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/play.png -------------------------------------------------------------------------------- /@Resources/Images/Music/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Music/stop.png -------------------------------------------------------------------------------- /@Resources/Images/Reminders/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Reminders/list.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/about.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/auto.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/battery.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/blur.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/color.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/dark.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/extras.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/language.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/light.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/support.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/theme.png -------------------------------------------------------------------------------- /@Resources/Images/Settings/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Settings/widgets.png -------------------------------------------------------------------------------- /@Resources/Images/Timer/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Timer/timer.png -------------------------------------------------------------------------------- /@Resources/Images/Unlock/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Unlock/0.png -------------------------------------------------------------------------------- /@Resources/Images/Unlock/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Unlock/1.png -------------------------------------------------------------------------------- /@Resources/Images/Volume/Volume-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Volume/Volume-1.png -------------------------------------------------------------------------------- /@Resources/Images/Volume/Volume0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Volume/Volume0.png -------------------------------------------------------------------------------- /@Resources/Images/Volume/Volume1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Volume/Volume1.png -------------------------------------------------------------------------------- /@Resources/Images/Volume/Volume2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Volume/Volume2.png -------------------------------------------------------------------------------- /@Resources/Images/Volume/Volume3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Volume/Volume3.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/01d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/01n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/01n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/02d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/02d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/02n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/02n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/03d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/03d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/03n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/03n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/04d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/04d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/04n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/04n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/09d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/09d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/09n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/09n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/10d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/10d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/10n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/10n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/11d — копия.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/11d — копия.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/11n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/11n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/13d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/13d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/13n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/13n.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/50d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/50d.png -------------------------------------------------------------------------------- /@Resources/Images/Weather/50n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Images/Weather/50n.png -------------------------------------------------------------------------------- /@Resources/JDWI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/JDWI.ttf -------------------------------------------------------------------------------- /@Resources/Language/Language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Language/Language.inc -------------------------------------------------------------------------------- /@Resources/Languages/all.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/all.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Extras/Sidebar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Extras/Sidebar.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/About.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/About.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/Appearence.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/Appearence.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/Battery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/Battery.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/Extras.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/Extras.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/Language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/Language.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Settings/Widgets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Settings/Widgets.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widget.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Calendar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Calendar.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Clock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Clock.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Monitor.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Music.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Notes.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Reminders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Reminders.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Timer.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Volume.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Volume.inc -------------------------------------------------------------------------------- /@Resources/Languages/de/Widgets/Weather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/de/Widgets/Weather.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Extras/Sidebar.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | tEditWidgets=Edit widgets 3 | tDisableSidebar=Turn off sidebar mode 4 | tQuitRainmeter=Quit Rainmeter -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/About.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings/About.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/Appearence.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings/Appearence.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/Battery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings/Battery.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/Extras.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings/Extras.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/Language.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | tLanguage=Language 3 | tTemperature=Temperature 4 | 5 | tMetric=Celsius 6 | tImperial=Fahrenheit 7 | tStandard=Kelvin -------------------------------------------------------------------------------- /@Resources/Languages/en/Settings/Widgets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Settings/Widgets.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widget.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Calendar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Calendar.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Clock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Clock.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Monitor.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Music.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Notes.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Reminders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Reminders.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Timer.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Volume.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Volume.inc -------------------------------------------------------------------------------- /@Resources/Languages/en/Widgets/Weather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/en/Widgets/Weather.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Extras/Sidebar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Extras/Sidebar.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/About.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/About.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/Appearence.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/Appearence.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/Battery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/Battery.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/Extras.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/Extras.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/Language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/Language.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Settings/Widgets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Settings/Widgets.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widget.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Calendar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Calendar.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Clock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Clock.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Monitor.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Music.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Notes.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Reminders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Reminders.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Timer.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Volume.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Volume.inc -------------------------------------------------------------------------------- /@Resources/Languages/ru/Widgets/Weather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ru/Widgets/Weather.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Extras/Sidebar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Extras/Sidebar.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/About.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/About.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/Appearence.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/Appearence.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/Battery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/Battery.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/Extras.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/Extras.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/Language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/Language.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Settings/Widgets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Settings/Widgets.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widget.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Calendar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Calendar.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Clock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Clock.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Monitor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Monitor.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Music.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Notes.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Reminders.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Reminders.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Timer.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Volume.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Volume.inc -------------------------------------------------------------------------------- /@Resources/Languages/ua/Widgets/Weather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Languages/ua/Widgets/Weather.inc -------------------------------------------------------------------------------- /@Resources/MacifiedWindows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/MacifiedWindows.exe -------------------------------------------------------------------------------- /@Resources/OIP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/OIP.jpeg -------------------------------------------------------------------------------- /@Resources/Plugins/32bit/SysColor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Plugins/32bit/SysColor.dll -------------------------------------------------------------------------------- /@Resources/Plugins/64bit/SysColor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Plugins/64bit/SysColor.dll -------------------------------------------------------------------------------- /@Resources/Resources/1-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/1-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/1-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/1-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/1.jpg -------------------------------------------------------------------------------- /@Resources/Resources/2-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/2-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/2-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/2-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/2.jpg -------------------------------------------------------------------------------- /@Resources/Resources/3-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/3-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/3-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/3-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/3.jpg -------------------------------------------------------------------------------- /@Resources/Resources/4-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/4-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/4-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/4-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/4.jpg -------------------------------------------------------------------------------- /@Resources/Resources/5-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/5-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/5-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/5-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/5.jpg -------------------------------------------------------------------------------- /@Resources/Resources/6-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/6-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/6-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/6-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/6.jpg -------------------------------------------------------------------------------- /@Resources/Resources/7-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/7-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/7-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/7-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/7.jpg -------------------------------------------------------------------------------- /@Resources/Resources/8-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/8-alt.png -------------------------------------------------------------------------------- /@Resources/Resources/8-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/8-modified.png -------------------------------------------------------------------------------- /@Resources/Resources/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/8.jpg -------------------------------------------------------------------------------- /@Resources/Resources/IMG_6966.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Resources/IMG_6966.PNG -------------------------------------------------------------------------------- /@Resources/Scripts/Bases/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Bases/Settings.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Bases/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Bases/Widget.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Bases/Window.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Bases/Window.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Clock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Clock.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Languages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Languages.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Monitor.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | MonitorContextTitle=None 3 | MonitorContextAction=[!WriteKeyValue Variables [#Meter] "None" "#@#Variables\Monitor.inc"][!Refresh] 4 | MonitorContextTitle2=--- 5 | MonitorContextAction2=[] 6 | MonitorContextTitle3=CPU 7 | MonitorContextAction3=[!WriteKeyValue Variables [#Meter] "CPU" "#@#Variables\Monitor.inc"][!Refresh] 8 | MonitorContextTitle4=RAM 9 | MonitorContextAction4=[!WriteKeyValue Variables [#Meter] "RAM" "#@#Variables\Monitor.inc"][!Refresh] 10 | MonitorContextTitle5=Disk 11 | MonitorContextAction5=[!WriteKeyValue Variables [#Meter] "Disk" "#@#Variables\Monitor.inc"][!Refresh] 12 | MonitorContextTitle6=Net 13 | MonitorContextAction6=[!WriteKeyValue Variables [#Meter] "Net" "#@#Variables\Monitor.inc"][!Refresh] 14 | MonitorContextTitle7=Battery 15 | MonitorContextAction7=[!WriteKeyValue Variables [#Meter] "Battery" "#@#Variables\Monitor.inc"][!Refresh] 16 | MonitorContextTitle8= 17 | 18 | [SetTickMark] 19 | Measure=String 20 | String=[#[#Meter]] 21 | DynamicVariables=1 22 | IfMatch=None 23 | IfMatchAction=[!SetOption Rainmeter ContextTitle "None [\x2714]"] 24 | IfMatch2=CPU 25 | IfMatchAction2=[!SetOption Rainmeter ContextTitle3 "CPU [\x2714]"] 26 | IfMatch3=RAM 27 | IfMatchAction3=[!SetOption Rainmeter ContextTitle4 "RAM [\x2714]"] 28 | IfMatch4=Disk 29 | IfMatchAction4=[!SetOption Rainmeter ContextTitle5 "Disk [\x2714]"] 30 | IfMatch5=Net 31 | IfMatchAction5=[!SetOption Rainmeter ContextTitle6 "Net [\x2714]"] 32 | IfMatch6=Battery 33 | IfMatchAction6=[!SetOption Rainmeter ContextTitle7 "Battery [\x2714]"] -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Music.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Sidebar.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | SidebarContextTitle=#tEditWidgets# 3 | SidebarContextAction=[!WriteKeyValue Variables SettingsTab "Widgets" "#@#Variables\Layout.inc"][!ToggleConfig "Monterey" "Settings.ini"][!ActivateConfig "Monterey" "Settings.ini"] 4 | SidebarContextTitle2=#tDisableSidebar# 5 | SidebarContextAction2=[!ShowFadeGroup "Monterey"][!DeactivateConfig "#CURRENTCONFIG#"] 6 | SidebarContextTitle3=#tQuitRainmeter# 7 | SidebarContextAction3=[!Quit] 8 | SidebarContextTitle4= -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Timezones1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Timezones1.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Timezones2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Timezones2.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Timezones3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Timezones3.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Units.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Units.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Contexts/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Contexts/Widget.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/Install.cmd: -------------------------------------------------------------------------------- 1 | cd %1 2 | schtasks /Create /TN "RainmeterUnlockPCAnimation" /XML "task.xml" 3 | pause -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/Install.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Extras/Unlock/Install.lnk -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/Start.bat: -------------------------------------------------------------------------------- 1 | echo 1 > State.txt -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/State.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/Stop.bat: -------------------------------------------------------------------------------- 1 | echo 0 > State.txt -------------------------------------------------------------------------------- /@Resources/Scripts/Extras/Unlock/task.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Extras/Unlock/task.xml -------------------------------------------------------------------------------- /@Resources/Scripts/Includes/Context.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Includes/Context.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Includes/Settings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Includes/Settings.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Includes/WhatsNew.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Includes/WhatsNew.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Includes/Widget.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Includes/Widget.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Includes/Window.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Includes/Window.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Music.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Processes/ThemeUpdater.inc: -------------------------------------------------------------------------------- 1 | [TimeNow] 2 | Measure=Time 3 | UpdateDivider=60 4 | 5 | [TimeStart] 6 | Measure=Time 7 | TimeStamp=#DarkThemeFrom# 8 | TimeStampFormat=%H:%M 9 | 10 | [TimeEnd] 11 | Measure=Time 12 | TimeStamp=#DarkThemeTo# 13 | TimeStampFormat=%H:%M 14 | 15 | [SecondsNow] 16 | Measure=Calc 17 | Formula=TimeNow % (60 * 60 * 24) 18 | UpdateDivider=60 19 | 20 | [SecondsStart] 21 | Measure=Calc 22 | Formula=TimeStart % (60 * 60 * 24) 23 | 24 | [SecondsEnd] 25 | Measure=Calc 26 | Formula=TimeEnd % (60 * 60 * 24) 27 | 28 | [IsBetween] 29 | Measure=Calc 30 | Formula=([SecondsNow] >= Min([SecondsStart],[SecondsEnd])) && ([SecondsNow] < Max([SecondsStart],[SecondsEnd])) 31 | IfCondition=(#IsDark#=0) && ([SecondsStart] < [SecondsEnd]) && ([IsBetween] = 1) 32 | IfTrueAction=[!WriteKeyValue Variables IsDark 1 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 33 | IfCondition2=(#IsDark#=0) && ([SecondsStart] > [SecondsEnd]) && ([IsBetween] = 0) 34 | IfTrueAction2=[!WriteKeyValue Variables IsDark 1 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 35 | IfCondition3=(#IsDark#=1) && ([SecondsStart] < [SecondsEnd]) && ([IsBetween] = 0) 36 | IfTrueAction3=[!WriteKeyValue Variables IsDark 0 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 37 | IfCondition4=(#IsDark#=1) && ([SecondsStart] > [SecondsEnd]) && ([IsBetween] = 1) 38 | IfTrueAction4=[!WriteKeyValue Variables IsDark 0 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 39 | DynamicVariables=1 40 | UpdateDivider=60 41 | 42 | [ChameleonMeasure] 43 | Measure=Plugin 44 | Group=ColorTheme 45 | Plugin=Chameleon 46 | Type=Desktop 47 | UpdateDivider=10 48 | OnChangeAction=[!RefreshGroup Monterey] -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/About.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/About.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Advanced.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Advanced.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Appearence.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Appearence.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Appearence/AdvancedOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Appearence/AdvancedOptions.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Appearence/ThemeOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Appearence/ThemeOptions.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Appearence/ThemeSelector.inc: -------------------------------------------------------------------------------- 1 | [ThemeSelector] 2 | Meter=Shape 3 | Shape=Rectangle 20,20,(#WidgetWidth# - #SidebarWidth# - 40),115,6 | Fill Color #ForegroundColor#05 | StrokeWidth 0 4 | X=#SidebarWidth# 5 | Y=55 6 | DynamicVariables=1 7 | 8 | [ThemeLabel] 9 | Meter=String 10 | Text=#tTheme# 11 | FontFace=#FontFace# 12 | FontWeight=400 13 | FontColor=#ForegroundColor# 14 | FontSize=11 15 | AntiAlias=1 16 | X=(#SidebarWidth#+30) 17 | Y=(85) 18 | DynamicVariables=1 19 | OnUpdateAction=[!SetOption "#Theme#Border" Hidden 0][!SetOption "#Theme#Label" FontWeight 600] 20 | ClipString=2 21 | W=120 22 | 23 | [Light] 24 | Meter=Image 25 | ImageName=#@#Images\Settings\light.png 26 | X=(#SidebarWidth#+30) 27 | Y=(120) 28 | W=60 29 | LeftMouseUpAction=[!WriteKeyValue Variables Theme "Light" "#@#Variables\Global.inc"][!RefreshGroup Monterey] 30 | 31 | [Dark] 32 | Meter=Image 33 | MeterStyle=Light 34 | ImageName=#@#Images\Settings\dark.png 35 | X=(#SidebarWidth#+100) 36 | LeftMouseUpAction=[!WriteKeyValue Variables Theme "Dark" "#@#Variables\Global.inc"][!RefreshGroup Monterey] 37 | 38 | [Auto] 39 | Meter=Image 40 | MeterStyle=Light 41 | ImageName=#@#Images\Settings\auto.png 42 | X=(#SidebarWidth#+170) 43 | LeftMouseUpAction=[!WriteKeyValue Variables Theme "Auto" "#@#Variables\Global.inc"][!ActivateConfig "Monterey\Extras\ThemeUpdater" "ThemeUpdater.ini"][!RefreshGroup Monterey] 44 | 45 | [Color] 46 | Meter=Image 47 | MeterStyle=Light 48 | ImageName=#@#Images\Settings\color.png 49 | X=(#SidebarWidth#+240) 50 | LeftMouseUpAction=[!WriteKeyValue Variables Theme "Color" "#@#Variables\Global.inc"][!ActivateConfig "Monterey\Extras\ThemeUpdater" "ThemeUpdater.ini"][!RefreshGroup Monterey] 51 | 52 | [Blur] 53 | Meter=Image 54 | MeterStyle=Light 55 | ImageName=#@#Images\Settings\blur.png 56 | X=(#SidebarWidth#+310) 57 | LeftMouseUpAction=[!WriteKeyValue Variables Theme "Blur" "#@#Variables\Global.inc"][!ActivateConfig "Monterey\Extras\ThemeUpdater" "ThemeUpdater.ini"][!RefreshGroup Monterey] 58 | 59 | [Border] 60 | Meter=Shape 61 | Shape=Rectangle 0,0,60,40,5 | Fill Color 00000000 | StrokeWidth 1.5 | Stroke Color #ForegroundColor# 62 | DynamicVariables=1 63 | X=(#SidebarWidth#+30) 64 | Y=(120) 65 | Hidden=1 66 | 67 | [LightBorder] 68 | Meter=Shape 69 | MeterStyle=Border 70 | 71 | [DarkBorder] 72 | Meter=Shape 73 | MeterStyle=Border 74 | X=(#SidebarWidth#+100) 75 | 76 | [AutoBorder] 77 | Meter=Shape 78 | MeterStyle=Border 79 | X=(#SidebarWidth#+170) 80 | 81 | [ColorBorder] 82 | Meter=Shape 83 | MeterStyle=Border 84 | X=(#SidebarWidth#+240) 85 | 86 | [BlurBorder] 87 | Meter=Shape 88 | MeterStyle=Border 89 | X=(#SidebarWidth#+310) 90 | 91 | [Label] 92 | Meter=String 93 | FontWeight=400 94 | FontFace=#FontFace# 95 | FontColor=#ForegroundColor# 96 | FontSize=10 97 | AntiAlias=1 98 | StringAlign=Center 99 | X=(#SidebarWidth#+60) 100 | Y=(165) 101 | W=(60) 102 | DynamicVariables=1 103 | 104 | [LightLabel] 105 | Meter=String 106 | MeterStyle=Label 107 | Text=#tLightTheme# 108 | 109 | [DarkLabel] 110 | Meter=String 111 | MeterStyle=Label 112 | Text=#tDarkTheme# 113 | X=(#SidebarWidth#+130) 114 | 115 | [AutoLabel] 116 | Meter=String 117 | MeterStyle=Label 118 | Text=#tAutoTheme# 119 | X=(#SidebarWidth#+200) 120 | 121 | [ColorLabel] 122 | Meter=String 123 | MeterStyle=Label 124 | Text=#tColorTheme# 125 | X=(#SidebarWidth#+270) 126 | 127 | [BlurLabel] 128 | Meter=String 129 | MeterStyle=Label 130 | Text=#tBlurTheme# 131 | X=(#SidebarWidth#+340) 132 | -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Battery.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | WidgetHeight=350 3 | 4 | [Language] 5 | Meter=Shape 6 | Shape=Rectangle 20,20,(#WidgetWidth# - #SidebarWidth# - 40),80,6 | Fill Color #ForegroundColor#05 | StrokeWidth 0 7 | X=#SidebarWidth# 8 | Y=55 9 | DynamicVariables=1 10 | 11 | [BatterySaverMode] 12 | Meter=String 13 | Text=#tBatterySaverMode# 14 | FontFace=#FontFace# 15 | FontWeight=400 16 | FontColor=#ForegroundColor# 17 | FontSize=11 18 | AntiAlias=1 19 | X=(#SidebarWidth#+30) 20 | Y=(85) 21 | DynamicVariables=1 22 | 23 | [BatterySaverModeFalse] 24 | Meter=Shape 25 | Shape=Rectangle 0,0,38,24,12 | Fill Color 808080 | StrokeWidth 0 26 | Shape2=Rectangle 2,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 27 | Y=(82) 28 | X=(#WidgetWidth# - 30 - 40) 29 | Hidden=(#BatterySaverMode# = 1) 30 | LeftMouseUpAction=[!WriteKeyValue Variables BatterySaverMode 1 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 31 | 32 | [BatterySaverModeTrue] 33 | Meter=Shape 34 | Shape=Rectangle 0,0,38,24,12 | Fill Color 33cc66 | StrokeWidth 0 35 | Shape2=Rectangle 16,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 36 | Y=(82) 37 | X=(#WidgetWidth# - 30 - 40) 38 | Hidden=(#BatterySaverMode# = 0) 39 | LeftMouseUpAction=[!WriteKeyValue Variables BatterySaverMode 0 "#@#Variables\Global.inc"][!RefreshGroup Monterey] 40 | 41 | [Line1] 42 | Meter=Shape 43 | Shape=Rectangle (#SidebarWidth# + 20),(115),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 44 | 45 | [BatteryAuto] 46 | Meter=String 47 | Text=#tAuto# 48 | FontFace=#FontFace# 49 | FontWeight=400 50 | FontColor=#ForegroundColor# 51 | FontSize=11 52 | AntiAlias=1 53 | X=(#SidebarWidth#+30) 54 | Y=(125) 55 | DynamicVariables=1 56 | 57 | [BatteryAutoOpened] 58 | Measure=Plugin 59 | Plugin=ConfigActive 60 | ConfigName=Monterey\Extras\AutoLowPowerMode 61 | UpdateDivider=1 62 | OnChangeAction=[!Refresh] 63 | 64 | [BatteryAutoFalse] 65 | Meter=Shape 66 | Shape=Rectangle 0,0,38,24,12 | Fill Color 808080 | StrokeWidth 0 67 | Shape2=Rectangle 2,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 68 | Y=(123) 69 | X=(#WidgetWidth# - 30 - 40) 70 | Hidden=([&BatteryAutoOpened:] <> -1) 71 | DynamicVariables=1 72 | LeftMouseUpAction=[!ToggleConfig "Monterey\Extras\AutoLowPowerMode" "AutoLowPowerMode.ini"] 73 | 74 | [BatteryAutoTrue] 75 | Meter=Shape 76 | Shape=Rectangle 0,0,38,24,12 | Fill Color 33cc66 | StrokeWidth 0 77 | Shape2=Rectangle 16,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 78 | Y=(123) 79 | X=(#WidgetWidth# - 30 - 40) 80 | Hidden=([&BatteryAutoOpened:] <> 1) 81 | DynamicVariables=1 82 | LeftMouseUpAction=[!ToggleConfig "Monterey\Extras\AutoLowPowerMode" "AutoLowPowerMode.ini"] 83 | 84 | [BatteryHelp] 85 | Meter=String 86 | MeterStyle=BatterySaverMode 87 | FontSize=10 88 | FontColor=#ForegroundColor#80 89 | ClipString=2 90 | W=340 91 | Y=160 92 | Text=#tBatterySaverModeHelp# -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Extras.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Extras.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Language.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Language.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Region.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Region.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/RegionOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/RegionOptions.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Sidebar.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | SidebarWidth=180 3 | 4 | [BackgroundMeter] 5 | OnUpdateAction=[!ShowMeter "[#SettingsTab]Shape"] 6 | 7 | [Monterey] 8 | Meter=Shape 9 | Shape=Rectangle 10,0,(#SidebarWidth#-20),30,6 | Fill Color #ForegroundColor#20 | StrokeWidth 0 10 | DynamicVariables=1 11 | Y=(25+30*1) 12 | 13 | [MontereyText] 14 | Meter=String 15 | Text=Monterey Rainmeter 16 | X=(#SidebarWidth#/2) 17 | Padding=6,6,6,6 18 | DynamicVariables=1 19 | ClipString=1 20 | AntiAlias=1 21 | FontFace=#FontFace# 22 | FontSize=11 23 | FontColor=#ForegroundColor#80 24 | StringAlign=Center 25 | Y=(25+30*1) 26 | 27 | [WidgetsShape] 28 | Meter=Shape 29 | Shape=Rectangle 10,0,(#SidebarWidth#-20),30,6 | Fill Color #BackgroundColor#80 | StrokeWidth 0 30 | DynamicVariables=1 31 | Hidden=1 32 | Y=(25+30*2.5) 33 | 34 | [WidgetsText] 35 | Meter=String 36 | Text=#tWidgets# 37 | DynamicVariables=1 38 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "Widgets" "#@#Variables\Layout.inc"][!Refresh] 39 | ClipString=1 40 | AntiAlias=1 41 | FontFace=#FontFace# 42 | FontSize=11 43 | FontColor=#ForegroundColor# 44 | Padding=48,6,6,6 45 | Y=(25+30*2.5) 46 | W=(#SidebarWidth#-48-6) 47 | 48 | [WidgetsIcon] 49 | Meter=Image 50 | ImageName=#@#Images\Settings\Widgets.png 51 | DynamicVariables=1 52 | Y=(29+30*2.5) 53 | X=18 54 | W=22 55 | H=22 56 | 57 | [ExtrasShape] 58 | Meter=Shape 59 | MeterStyle=WidgetsShape 60 | Hidden=1 61 | Y=(25+30*3.5) 62 | 63 | [ExtrasText] 64 | Meter=String 65 | MeterStyle=WidgetsText 66 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "Extras" "#@#Variables\Layout.inc"][!Refresh] 67 | Text=#tExtras# 68 | Y=(25+30*3.5) 69 | 70 | [ExtrasIcon] 71 | Meter=Image 72 | MeterStyle=WidgetsIcon 73 | ImageName=#@#Images\Settings\Extras.png 74 | Y=(29+30*3.5) 75 | 76 | [AppearenceShape] 77 | Meter=Shape 78 | MeterStyle=WidgetsShape 79 | Hidden=1 80 | Y=(25+30*5) 81 | 82 | [AppearenceText] 83 | Meter=String 84 | MeterStyle=WidgetsText 85 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "Appearence" "#@#Variables\Layout.inc"][!Refresh] 86 | Text=#tAppearence# 87 | Y=(25+30*5) 88 | 89 | [AppearenceIcon] 90 | Meter=Image 91 | MeterStyle=WidgetsIcon 92 | ImageName=#@#Images\Settings\Theme.png 93 | Y=(29+30*5) 94 | 95 | [LanguageShape] 96 | Meter=Shape 97 | MeterStyle=WidgetsShape 98 | Hidden=1 99 | Y=(25+30*6) 100 | 101 | [LanguageText] 102 | Meter=String 103 | MeterStyle=WidgetsText 104 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "Language" "#@#Variables\Layout.inc"][!Refresh] 105 | Text=#tLanguage# 106 | Y=(25+30*6) 107 | 108 | [LanguageIcon] 109 | Meter=Image 110 | MeterStyle=WidgetsIcon 111 | ImageName=#@#Images\Settings\Language.png 112 | Y=(29+30*6) 113 | 114 | [BatteryShape] 115 | Meter=Shape 116 | MeterStyle=WidgetsShape 117 | Hidden=1 118 | Y=(25+30*7) 119 | 120 | [BatteryText] 121 | Meter=String 122 | MeterStyle=WidgetsText 123 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "Battery" "#@#Variables\Layout.inc"][!Refresh] 124 | Text=#tBattery# 125 | Y=(25+30*7) 126 | 127 | [BatteryIcon] 128 | Meter=Image 129 | MeterStyle=WidgetsIcon 130 | ImageName=#@#Images\Settings\Battery.png 131 | Y=(29+30*7) 132 | 133 | [SupportShape] 134 | Meter=Shape 135 | MeterStyle=WidgetsShape 136 | Hidden=1 137 | Y=(25+30*8.5) 138 | 139 | [SupportText] 140 | Meter=String 141 | MeterStyle=WidgetsText 142 | LeftMouseUpAction=["https://forms.gle/ZtCrtG44SFG8eaQKA"] 143 | Text=#tSupport# 144 | Y=(25+30*8.5) 145 | 146 | [SupportIcon] 147 | Meter=Image 148 | MeterStyle=WidgetsIcon 149 | ImageName=#@#Images\Settings\Support.png 150 | Y=(29+30*8.5) 151 | 152 | [AboutShape] 153 | Meter=Shape 154 | MeterStyle=WidgetsShape 155 | Hidden=1 156 | Y=(25+30*9.5) 157 | 158 | [AboutText] 159 | Meter=String 160 | MeterStyle=WidgetsText 161 | LeftMouseUpAction=[!WriteKeyValue Variables SettingsTab "About" "#@#Variables\Layout.inc"][!Refresh] 162 | Text=#tAbout# 163 | Y=(25+30*9.5) 164 | 165 | [AboutIcon] 166 | Meter=Image 167 | MeterStyle=WidgetsIcon 168 | ImageName=#@#Images\Settings\About.png 169 | Y=(29+30*9.5) 170 | -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Theme.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/Theme.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/WhatsNew.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Settings/WhatsNew.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Settings/Widgets.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | WidgetHeight=550 3 | @Include1=#@#Variables\Layout.inc 4 | @Include2=#@#Languages\#Language#\Widgets\Clock.inc 5 | @Include3=#@#Languages\#Language#\Widgets\Calendar.inc 6 | @Include4=#@#Languages\#Language#\Widgets\Monitor.inc 7 | @Include5=#@#Languages\#Language#\Widgets\Weather.inc 8 | @Include6=#@#Languages\#Language#\Widgets\Notes.inc 9 | @Include7=#@#Languages\#Language#\Widgets\Reminders.inc 10 | @Include8=#@#Languages\#Language#\Widgets\Music.inc 11 | @Include9=#@#Languages\#Language#\Widgets\Volume.inc 12 | @Include10=#@#Languages\#Language#\Widgets\Timer.inc 13 | 14 | [Widgets] 15 | Meter=Shape 16 | Shape=Rectangle 20,20,(#WidgetWidth# - #SidebarWidth# - 40),450,6 | Fill Color #ForegroundColor#05 | StrokeWidth 0 17 | X=#SidebarWidth# 18 | Y=55 19 | DynamicVariables=1 20 | 21 | [Widget1Icon] 22 | Meter=Image 23 | ImageName=#@#Images\Icons\Clock.png 24 | W=30 25 | X=(#SidebarWidth#+30) 26 | Y=(55+30) 27 | 28 | [Widget1Title] 29 | Meter=String 30 | Text=#tClock# 31 | FontSize=11 32 | FontFace=#FontFace# 33 | FontColor=#ForegroundColor# 34 | FontWeight=400 35 | AntiAlias=1 36 | DynamicVariables=1 37 | X=(#SidebarWidth#+70) 38 | Y=(55+35) 39 | 40 | [Widget1Opened] 41 | Measure=Plugin 42 | Plugin=ConfigActive 43 | ConfigName=Monterey\Widgets\Clock 44 | UpdateDivider=1 45 | OnChangeAction=[!Refresh] 46 | 47 | [Widget1False] 48 | Meter=Shape 49 | Shape=Rectangle 0,0,38,24,12 | Fill Color 808080 | StrokeWidth 0 50 | Shape2=Rectangle 2,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 51 | Y=(88) 52 | X=(#WidgetWidth# - 30 - 40) 53 | Hidden=([&Widget1Opened:] <> -1) 54 | DynamicVariables=1 55 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Clock" "#ClockWidgetSize#.ini"] 56 | 57 | [Widget1True] 58 | Meter=Shape 59 | Shape=Rectangle 0,0,38,24,12 | Fill Color 33cc66 | StrokeWidth 0 60 | Shape2=Rectangle 16,2,20,20,10 | Fill Color ffffff | StrokeWidth 0 61 | Y=(88) 62 | X=(#WidgetWidth# - 30 - 40) 63 | Hidden=([&Widget1Opened:] <> 1) 64 | DynamicVariables=1 65 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Clock" "#ClockWidgetSize#.ini"] 66 | 67 | [Line1] 68 | Meter=Shape 69 | Shape=Rectangle (#SidebarWidth# + 20),(125),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 70 | 71 | [Widget2Icon] 72 | Meter=Image 73 | MeterStyle=Widget1Icon 74 | ImageName=#@#Images\Icons\Calendar.png 75 | Y=(55+80) 76 | 77 | [Widget2Title] 78 | Meter=String 79 | MeterStyle=Widget1Title 80 | Text=#tCalendar# 81 | Y=(55+85) 82 | 83 | [Widget2Opened] 84 | Measure=Plugin 85 | Plugin=ConfigActive 86 | ConfigName=Monterey\Widgets\Calendar 87 | UpdateDivider=1 88 | OnChangeAction=[!Refresh] 89 | 90 | [Widget2False] 91 | Meter=Shape 92 | MeterStyle=Widget1False 93 | Y=(138) 94 | Hidden=([&Widget2Opened:] <> -1) 95 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Calendar" "#CalendarWidgetSize#.ini"] 96 | 97 | [Widget2True] 98 | Meter=Shape 99 | MeterStyle=Widget1True 100 | Y=(138) 101 | Hidden=([&Widget2Opened:] <> 1) 102 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Calendar" "#CalendarWidgetSize#.ini"] 103 | 104 | [Line2] 105 | Meter=Shape 106 | Shape=Rectangle (#SidebarWidth# + 20),(175),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 107 | 108 | [Widget3Icon] 109 | Meter=Image 110 | MeterStyle=Widget1Icon 111 | ImageName=#@#Images\Icons\Monitor.png 112 | Y=(45+140) 113 | 114 | [Widget3Title] 115 | Meter=String 116 | MeterStyle=Widget1Title 117 | Text=#tMonitor# 118 | Y=(45+145) 119 | 120 | [Widget3Opened] 121 | Measure=Plugin 122 | Plugin=ConfigActive 123 | ConfigName=Monterey\Widgets\Monitor 124 | UpdateDivider=1 125 | OnChangeAction=[!Refresh] 126 | 127 | [Widget3False] 128 | Meter=Shape 129 | MeterStyle=Widget1False 130 | Y=(188) 131 | Hidden=([&Widget3Opened:] <> -1) 132 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Monitor" "#MonitorWidgetSize#.ini"] 133 | 134 | [Widget3True] 135 | Meter=Shape 136 | MeterStyle=Widget1True 137 | Y=(188) 138 | Hidden=([&Widget3Opened:] <> 1) 139 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Monitor" "#MonitorWidgetSize#.ini"] 140 | 141 | [Line3] 142 | Meter=Shape 143 | Shape=Rectangle (#SidebarWidth# + 20),(225),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 144 | 145 | [Widget4Icon] 146 | Meter=Image 147 | MeterStyle=Widget1Icon 148 | ImageName=#@#Images\Icons\Weather.png 149 | Y=(45+190) 150 | 151 | [Widget4Title] 152 | Meter=String 153 | MeterStyle=Widget1Title 154 | Text=#tWeather# 155 | Y=(45+195) 156 | 157 | [Widget4Opened] 158 | Measure=Plugin 159 | Plugin=ConfigActive 160 | ConfigName=Monterey\Widgets\Weather 161 | UpdateDivider=1 162 | OnChangeAction=[!Refresh] 163 | 164 | [Widget4False] 165 | Meter=Shape 166 | MeterStyle=Widget1False 167 | Y=(238) 168 | Hidden=([&Widget4Opened:] <> -1) 169 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Weather" "#WeatherWidgetSize#.ini"] 170 | 171 | [Widget4True] 172 | Meter=Shape 173 | MeterStyle=Widget1True 174 | Y=(238) 175 | Hidden=([&Widget4Opened:] <> 1) 176 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Weather" "#WeatherWidgetSize#.ini"] 177 | 178 | [Line4] 179 | Meter=Shape 180 | Shape=Rectangle (#SidebarWidth# + 20),(275),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 181 | 182 | [Widget5Icon] 183 | Meter=Image 184 | MeterStyle=Widget1Icon 185 | ImageName=#@#Images\Icons\Notes.png 186 | Y=(45+240) 187 | 188 | [Widget5Title] 189 | Meter=String 190 | MeterStyle=Widget1Title 191 | Text=#tNotes# 192 | Y=(45+245) 193 | 194 | [Widget5Opened] 195 | Measure=Plugin 196 | Plugin=ConfigActive 197 | ConfigName=Monterey\Widgets\Notes 198 | UpdateDivider=1 199 | OnChangeAction=[!Refresh] 200 | 201 | [Widget5False] 202 | Meter=Shape 203 | MeterStyle=Widget1False 204 | Y=(288) 205 | Hidden=([&Widget5Opened:] <> -1) 206 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Notes" "#NotesWidgetSize#.ini"] 207 | 208 | [Widget5True] 209 | Meter=Shape 210 | MeterStyle=Widget1True 211 | Y=(288) 212 | Hidden=([&Widget5Opened:] <> 1) 213 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Notes" "#NotesWidgetSize#.ini"] 214 | 215 | [Line5] 216 | Meter=Shape 217 | Shape=Rectangle (#SidebarWidth# + 20),(325),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 218 | 219 | [Widget6Icon] 220 | Meter=Image 221 | MeterStyle=Widget1Icon 222 | ImageName=#@#Images\Icons\Reminders.png 223 | Y=(45+290) 224 | 225 | [Widget6Title] 226 | Meter=String 227 | MeterStyle=Widget1Title 228 | Text=#tReminders# 229 | Y=(45+295) 230 | 231 | [Widget6Opened] 232 | Measure=Plugin 233 | Plugin=ConfigActive 234 | ConfigName=Monterey\Widgets\Reminders 235 | UpdateDivider=1 236 | OnChangeAction=[!Refresh] 237 | 238 | [Widget6False] 239 | Meter=Shape 240 | MeterStyle=Widget1False 241 | Y=(338) 242 | Hidden=([&Widget6Opened:] <> -1) 243 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Reminders" "#RemindersWidgetSize#.ini"] 244 | 245 | [Widget6True] 246 | Meter=Shape 247 | MeterStyle=Widget1True 248 | Y=(338) 249 | Hidden=([&Widget6Opened:] <> 1) 250 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Reminders" "#RemindersWidgetSize#.ini"] 251 | 252 | [Line6] 253 | Meter=Shape 254 | Shape=Rectangle (#SidebarWidth# + 20),(375),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 255 | 256 | [Widget7Icon] 257 | Meter=Image 258 | MeterStyle=Widget1Icon 259 | ImageName=#@#Images\Icons\Music.png 260 | Y=(45+340) 261 | 262 | [Widget7Title] 263 | Meter=String 264 | MeterStyle=Widget1Title 265 | Text=#tMusic# 266 | Y=(45+345) 267 | 268 | [Widget7Opened] 269 | Measure=Plugin 270 | Plugin=ConfigActive 271 | ConfigName=Monterey\Widgets\Music 272 | UpdateDivider=1 273 | OnChangeAction=[!Refresh] 274 | 275 | [Widget7False] 276 | Meter=Shape 277 | MeterStyle=Widget1False 278 | Y=(388) 279 | Hidden=([&Widget7Opened:] <> -1) 280 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Music" "#MusicWidgetSize#.ini"] 281 | 282 | [Widget7True] 283 | Meter=Shape 284 | MeterStyle=Widget1True 285 | Y=(388) 286 | Hidden=([&Widget7Opened:] <> 1) 287 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Music" "#MusicWidgetSize#.ini"] 288 | 289 | [Line7] 290 | Meter=Shape 291 | Shape=Rectangle (#SidebarWidth# + 20),(425),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 292 | 293 | [Widget8Icon] 294 | Meter=Image 295 | MeterStyle=Widget1Icon 296 | ImageName=#@#Images\Icons\Volume.png 297 | Y=(45+390) 298 | 299 | [Widget8Title] 300 | Meter=String 301 | MeterStyle=Widget1Title 302 | Text=#tVolume# 303 | Y=(45+395) 304 | 305 | [Widget8Opened] 306 | Measure=Plugin 307 | Plugin=ConfigActive 308 | ConfigName=Monterey\Widgets\Volume 309 | UpdateDivider=1 310 | OnChangeAction=[!Refresh] 311 | 312 | [Widget8False] 313 | Meter=Shape 314 | MeterStyle=Widget1False 315 | Y=(438) 316 | Hidden=([&Widget8Opened:] <> -1) 317 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Volume" "#VolumeWidgetSize#.ini"] 318 | 319 | [Widget8True] 320 | Meter=Shape 321 | MeterStyle=Widget1True 322 | Y=(438) 323 | Hidden=([&Widget8Opened:] <> 1) 324 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Volume" "#VolumeWidgetSize#.ini"] 325 | 326 | [Line8] 327 | Meter=Shape 328 | Shape=Rectangle (#SidebarWidth# + 20),(475),(#WidgetWidth#-#SidebarWidth#-40),0 | StrokeWidth 0.5 | Stroke Color 80808080 329 | 330 | [Widget9Icon] 331 | Meter=Image 332 | MeterStyle=Widget1Icon 333 | ImageName=#@#Images\Icons\Timer.png 334 | Y=(45+440) 335 | 336 | [Widget9Title] 337 | Meter=String 338 | MeterStyle=Widget1Title 339 | Text=#tTimer# 340 | Y=(45+445) 341 | 342 | [Widget9Opened] 343 | Measure=Plugin 344 | Plugin=ConfigActive 345 | ConfigName=Monterey\Widgets\Timer 346 | UpdateDivider=1 347 | OnChangeAction=[!Refresh] 348 | 349 | [Widget9False] 350 | Meter=Shape 351 | MeterStyle=Widget1False 352 | Y=(488) 353 | Hidden=([&Widget9Opened:] <> -1) 354 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Timer" "#TimerWidgetSize#.ini"] 355 | 356 | [Widget9True] 357 | Meter=Shape 358 | MeterStyle=Widget1True 359 | Y=(488) 360 | Hidden=([&Widget9Opened:] <> 1) 361 | LeftMouseUpAction=[!ToggleConfig "Monterey\Widgets\Timer" "#TimerWidgetSize#.ini"] 362 | 363 | -------------------------------------------------------------------------------- /@Resources/Scripts/Sizes/Large.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Sizes/Large.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Sizes/Medium.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Sizes/Medium.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Sizes/Small.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Sizes/Small.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Sizes/Wide.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Sizes/Wide.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Themes/Auto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Themes/Auto.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Themes/Blur.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Themes/Blur.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Themes/Color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Themes/Color.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Themes/Dark.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Themes/Dark.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Themes/Light.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Themes/Light.inc -------------------------------------------------------------------------------- /@Resources/Scripts/Widgets/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Scripts/Widgets/Music.inc -------------------------------------------------------------------------------- /@Resources/Skin Icons/3 line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/3 line.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Blank.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness0.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness1.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness10.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness11.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness12.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness13.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness14.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness15.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness16.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness17.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness18.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness19.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness2.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness20.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness21.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness3.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness4.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness5.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness6.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness7.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness8.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Brightness/brightness9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Brightness/brightness9.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Control.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/IMG_7147.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/IMG_7147.PNG -------------------------------------------------------------------------------- /@Resources/Skin Icons/IMG_7154.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/IMG_7154.PNG -------------------------------------------------------------------------------- /@Resources/Skin Icons/Icon BG 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Icon BG 2.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Icon BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Icon BG.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Mask 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Mask 2.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Mask BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Mask BG.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/Mask.png -------------------------------------------------------------------------------- /@Resources/Skin Icons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Skin Icons/restart.png -------------------------------------------------------------------------------- /@Resources/Themes/auto.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Themes/auto.inc -------------------------------------------------------------------------------- /@Resources/Themes/color.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Themes/color.inc -------------------------------------------------------------------------------- /@Resources/Themes/dark.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Themes/dark.inc -------------------------------------------------------------------------------- /@Resources/Themes/light.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Themes/light.inc -------------------------------------------------------------------------------- /@Resources/Variables.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | 3 | Language= 4 | UnitOfMeasure=m 5 | ScrollMouseIncrement=0.01 6 | Format=H 7 | Hidden=0 8 | Hidden2=1 9 | Player=Spotify 10 | Color1=191,191,191 11 | Color2=77,128,211 12 | Color3=191,191,191 13 | Color4=191,191,191 14 | Color5=77,128,211 15 | Color6=191,191,191 16 | Color7=77,128,211 17 | Color8=191,191,191 18 | Color9=77,128,211 19 | Color10=191,191,191 20 | Color11=77,128,211 21 | Color12=191,191,191 22 | Color13=77,128,211 23 | 24 | ;----------------------Icon Dock Settings-------------------------- 25 | ;------------------------------------------------------------------ 26 | 27 | 28 | Icon1NameAndPath=#@#\01.png 29 | LocationPath1= 30 | 31 | Icon2NameAndPath=#@#\02.png 32 | LocationPath2= 33 | 34 | Icon3NameAndPath=#@#\03.png 35 | LocationPath3= 36 | 37 | Icon4NameAndPath=#@#\04.png 38 | LocationPath4= 39 | 40 | Icon5NameAndPath=#@#\05.png 41 | LocationPath5= 42 | 43 | Icon6NameAndPath=#@#\06.png 44 | LocationPath6= 45 | 46 | Icon7NameAndPath=#@#\07.png 47 | LocationPath7= 48 | 49 | Icon8NameAndPath=#@#\08.png 50 | LocationPath8= 51 | 52 | Icon9NameAndPath=#@#\09.png 53 | LocationPath9= 54 | 55 | Icon10NameAndPath=#@#\10.png 56 | LocationPath10= 57 | 58 | ;----------------------Link Dock Settings-------------------------- 59 | ;------------------------------------------------------------------ 60 | 61 | Name1=Google 62 | Link1=chrome.exe 63 | 64 | Name2=Facebook 65 | Link2=https://facebook.com/ 66 | 67 | Name3=Twitter 68 | Link3=https://twitter.com/ 69 | 70 | Name4=YouTube 71 | Link4=https://www.youtube.com/ 72 | 73 | Name5=Behance 74 | Link5=https://www.behance.net/ 75 | 76 | Name6=Gmail 77 | Link6=https://mail.google.com/mail/ 78 | 79 | Name7=Deviantart 80 | Link7=https://www.deviantart.com/popular-24-hours/ 81 | 82 | -------------------------------------------------------------------------------- /@Resources/Variables/Calendar.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | SundayWeek=0 3 | -------------------------------------------------------------------------------- /@Resources/Variables/Clock.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ShowSeconds=1 3 | 24HourFormat=1 4 | Timezone=local 5 | -------------------------------------------------------------------------------- /@Resources/Variables/Global.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Global.inc -------------------------------------------------------------------------------- /@Resources/Variables/Layout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Layout.inc -------------------------------------------------------------------------------- /@Resources/Variables/Monitor.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | Meter1=Battery 3 | Meter2=CPU 4 | Meter3=RAM 5 | Meter4=Disk 6 | 7 | GreenColor=2dd255 8 | YellowColor=ffc70a 9 | RedColor=eb5546 10 | 11 | YellowStarts=75 12 | RedStarts=90 13 | Meter5=None 14 | Meter6=None 15 | -------------------------------------------------------------------------------- /@Resources/Variables/Music.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Music.inc -------------------------------------------------------------------------------- /@Resources/Variables/Notes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Notes.inc -------------------------------------------------------------------------------- /@Resources/Variables/Reminders.inc: -------------------------------------------------------------------------------- 1 | [Variables] 2 | ListName=Reminders 3 | Item1=3 4 | Item2=1 5 | Item3=2 6 | Item4=4 7 | Item5=5 8 | Item6= 9 | -------------------------------------------------------------------------------- /@Resources/Variables/Timer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Timer.inc -------------------------------------------------------------------------------- /@Resources/Variables/Volume.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Volume.inc -------------------------------------------------------------------------------- /@Resources/Variables/Weather.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/Variables/Weather.inc -------------------------------------------------------------------------------- /@Resources/pfp icons/IMG_7198.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/@Resources/pfp icons/IMG_7198.PNG -------------------------------------------------------------------------------- /Clock.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/Clock.ini -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 MaybeSahil 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | # Screenshots
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
and 4 more themes you can check by installing the skin. 36 |
37 | 38 | # Features 39 | - Clock and date in macOS lockscreen format 40 | - Wifi, battery and power off icons on top right corner like in macOS lockscreen 41 | - 8 lockscreen themes to choose from 42 | - music player integration. 43 | - shortcut key (alt+L) to activate the skin 44 | - and some minor details/animations/effects included 45 | 46 | # Compatability 47 |This skin works fine with windows 7 desktops/laptops/pc , having resolution of 1920x1080. For other resolution devices, you may have to adjust some parameters 48 | 49 | # How to Setup 50 | - First install the rmskin file given in releases tab 51 | - After that, go to following path: C:\Users\username\Documents\Rainmeter\Skins\Screensaver\@Resources . There you will find a file called MacifiedWindows.exe. This is the AHK script converted to exe file to run the shortcut key function of Alt+L to load the skin (just like default lockscreen key is win+L, so i assigned my skin a hotkey too) 52 | - Now the skin is loaded. you might see some elements not alligned properly if your device isnt compatible with the skin (read compatability above). For that you have to go down and read Fix issues section 53 | - If they are alligned well, you can head forward 54 | - To open themes section, click on button of change wallpaper which will give you 8 themes to select. choose any 55 | - To keep your own wallpaper of skin, edit the [backgroundmeter] in clock.ini file in notepad. by default its IMG_6966.PNG. Place your wallpaper file in @Resources/Resources folder and then rename the default file with name of your image file you want to set as wallpaper. 56 | - CHanging name and username is also inside the same clock.ini file. If you cant find, press ctrl+F(find in notepad) and search "Sahil" and you will find 2 results. edit them accordingly to your preference. 57 | - For the profile icon, i have provided 8-10 icons inside @Resources/pfp icons folder. Copy the name of any you like and replace it with default name "IMG_7198.PNG" in clock.ini file (use ctrl+F to find this default name) 58 | - This is it, now the setup is hopefully completed. Raise your issue if any and i will try to solve it for you. 59 | 60 | # Fix issues 61 | updating soon, stay tuned. 62 | 63 | # Hot Key 64 | - As told before, macifiedwindows.exe is to assign hotkey to load the skin easily without using the mouse. 65 | - this file will be inside @Resources folder. 66 | - you can make it run on boot by adding it in startup folder 67 | - to access startup folder, press windows key+R and type shell:startup and press enter. Copy the exe file in the folder which will be opened after pressing enter. 68 | - to stop it, you can end task from task manager 69 | 70 | # Credits 71 | credits goes to respective developers whose skins i used and modified, like monterey, lofiroom and menubar skin 72 | and also to my testers for making it possible to find issues and help me make a stable version of this skin. 73 | 74 | -------------------------------------------------------------------------------- /Themes/Themes.ini: -------------------------------------------------------------------------------- 1 | [Rainmeter] 2 | Update=1000 3 | Author=siesiesie7e 4 | 5 | [Variables] 6 | @include=#@#Variables.inc 7 | @include2=#@#Language\Language.inc 8 | 9 | ;------------------------------------------------------------- 10 | ;------------------------------------------------------------- 11 | [!redraw] 12 | blur=1 13 | BlurRegion=1,1,200,400,30 14 | DynamicWindowSize=1 15 | 16 | [MeterThemesBg] 17 | Meter=Shape 18 | X=0 19 | Y=0 20 | Shape=Rectangle 1,1,350,500,0 | Fill Color 1,1,1,1 | StrokeColor 255,255,255,255 21 | MouseLeaveAction=[!deactivateConfig "Screensaver\Themes" "Themes.ini"][!Update] 22 | 23 | [FrostedGlass] 24 | Measure=Plugin 25 | Plugin=FrostedGlass 26 | Type=Acrylic 27 | Border=All 28 | 29 | ;------------------------------------------------------------- 30 | ;------------------------------------------------------------- 31 | 32 | 33 | [MeterTheme1] 34 | Meter=String 35 | StringAlign=Center 36 | FontColor=255,255,255 37 | FontFace=Forma 38 | FontSize=15 39 | X=90 40 | Y=90 41 | Text=Golden Bloom 42 | AntiAlias=1 43 | 44 | [MeterTheme2] 45 | Meter=String 46 | StringAlign=Center 47 | FontColor=255,255,255 48 | FontFace=Forma 49 | FontSize=15 50 | X=90 51 | Y=80R 52 | Text=Spectral Nebula 53 | AntiAlias=1 54 | 55 | 56 | [MeterTheme3] 57 | Meter=String 58 | StringAlign=Center 59 | FontColor=255,255,255 60 | FontFace=Forma 61 | FontSize=15 62 | X=90 63 | Y=80R 64 | Text=Oceanic Depths 65 | AntiAlias=1 66 | 67 | [MeterTheme4] 68 | Meter=String 69 | StringAlign=Center 70 | FontColor=255,255,255 71 | FontFace=Forma 72 | FontSize=15 73 | X=90 74 | Y=80R 75 | Text=Blended Hues 76 | AntiAlias=1 77 | 78 | [MeterTheme5] 79 | Meter=String 80 | StringAlign=Center 81 | FontColor=255,255,255 82 | FontFace=Forma 83 | FontSize=15 84 | X=260 85 | Y=90 86 | Text=Skyline Sunset 87 | AntiAlias=1 88 | 89 | [MeterTheme6] 90 | Meter=String 91 | StringAlign=Center 92 | FontColor=255,255,255 93 | FontFace=Forma 94 | FontSize=15 95 | X=260 96 | Y=80R 97 | Text=Stone Sentinel 98 | AntiAlias=1 99 | 100 | [MeterTheme7] 101 | Meter=String 102 | StringAlign=Center 103 | FontColor=255,255,255 104 | FontFace=Forma 105 | FontSize=15 106 | X=260 107 | Y=80R 108 | Text=Crimson Horizon 109 | AntiAlias=1 110 | 111 | [MeterTheme8] 112 | Meter=String 113 | StringAlign=Center 114 | FontColor=255,255,255 115 | FontFace=Forma 116 | FontSize=15 117 | X=260 118 | Y=80R 119 | Text=Emerald Valley 120 | AntiAlias=1 121 | 122 | [MeterCloseButton] 123 | Meter=String 124 | StringAlign=Center 125 | FontFace=Forma 126 | FontSize=20 127 | FontColor=255,255,255 128 | Text=X 129 | X=170 130 | Y=25R 131 | AntiAlias=1 132 | MouseOverAction=[!SetOption MeterCloseButton FontColor "148,39,107"][!Update] 133 | MouseLeaveAction=[!SetOption MeterCloseButton FontColor "255,255,255"][!Update] 134 | LeftMouseUpAction=[!DeactivateConfig "Screensaver\Themes" "Themes.ini"][!Update] 135 | 136 | [Wall1Icon] 137 | Meter=Image 138 | X=40 139 | Y=35 140 | ImageName=#@#Resources\1-modified.png 141 | DynamicVariables=1 142 | ImageAlign=Center 143 | PreserveAspectRatio=1 144 | H=(56.25) 145 | W=(100) 146 | MouseOverAction=[!SetOption Wall1Icon ImageName "#@#Resources\1-alt.png"][!update] 147 | MouseLeaveAction=[!SetOption Wall1Icon ImageName "#@#Resources\1-modified.png"][!update] 148 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "a.ini"][!Update][!Refresh Screensaver][!Refresh] 149 | 150 | 151 | 152 | [Wall2Icon] 153 | Meter=Image 154 | X=40 155 | Y=50R 156 | ImageName=#@#Resources\2-modified.png 157 | DynamicVariables=1 158 | ImageAlign=Center 159 | PreserveAspectRatio=1 160 | H=(56.25) 161 | W=(100) 162 | MouseOverAction=[!SetOption Wall2Icon ImageName "#@#Resources\2-alt.png"][!update] 163 | MouseLeaveAction=[!SetOption Wall2Icon ImageName "#@#Resources\2-modified.png"][!update] 164 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "b.ini"][!Update][!Refresh Screensaver][!Refresh] 165 | 166 | [Wall3Icon] 167 | Meter=Image 168 | X=40 169 | Y=50R 170 | ImageName=#@#Resources\3-modified.png 171 | DynamicVariables=1 172 | ImageAlign=Center 173 | PreserveAspectRatio=1 174 | H=(56.25) 175 | W=(100) 176 | MouseOverAction=[!SetOption Wall3Icon ImageName "#@#Resources\3-alt.png"][!update] 177 | MouseLeaveAction=[!SetOption Wall3Icon ImageName "#@#Resources\3-modified.png"][!update] 178 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "c.ini"][!Update][!Refresh Screensaver][!Refresh] 179 | 180 | 181 | [Wall4Icon] 182 | Meter=Image 183 | X=40 184 | Y=50R 185 | ImageName=#@#Resources\4-modified.png 186 | DynamicVariables=1 187 | ImageAlign=Center 188 | PreserveAspectRatio=1 189 | H=(56.25) 190 | W=(100) 191 | MouseOverAction=[!SetOption Wall4Icon ImageName "#@#Resources\4-alt.png"][!update] 192 | MouseLeaveAction=[!SetOption Wall4Icon ImageName "#@#Resources\4-modified.png"][!update] 193 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "d.ini"][!Update][!Refresh Screensaver][!Refresh] 194 | 195 | 196 | [Wall5Icon] 197 | Meter=Image 198 | X=210 199 | Y=35 200 | ImageName=#@#Resources\5-modified.png 201 | DynamicVariables=1 202 | ImageAlign=Center 203 | PreserveAspectRatio=1 204 | H=(56.25) 205 | W=(100) 206 | MouseOverAction=[!SetOption Wall5Icon ImageName "#@#Resources\5-alt.png"][!update] 207 | MouseLeaveAction=[!SetOption Wall5Icon ImageName "#@#Resources\5-modified.png"][!update] 208 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "e.ini"][!Update][!Refresh Screensaver][!Refresh] 209 | 210 | 211 | [Wall6Icon] 212 | Meter=Image 213 | X=210 214 | Y=50R 215 | ImageName=#@#Resources\6-modified.png 216 | DynamicVariables=1 217 | ImageAlign=Center 218 | PreserveAspectRatio=1 219 | H=(56.25) 220 | W=(100) 221 | MouseOverAction=[!SetOption Wall6Icon ImageName "#@#Resources\6-alt.png"][!update] 222 | MouseLeaveAction=[!SetOption Wall6Icon ImageName "#@#Resources\6-modified.png"][!update] 223 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "f.ini"][!Update][!Refresh Screensaver][!Refresh] 224 | 225 | 226 | 227 | [Wall7Icon] 228 | Meter=Image 229 | X=210 230 | Y=50R 231 | ImageName=#@#Resources\7-modified.png 232 | DynamicVariables=1 233 | ImageAlign=Center 234 | PreserveAspectRatio=1 235 | H=(56.25) 236 | W=(100) 237 | MouseOverAction=[!SetOption Wall7Icon ImageName "#@#Resources\7-alt.png"][!update] 238 | MouseLeaveAction=[!SetOption Wall7Icon ImageName "#@#Resources\7-modified.png"][!update] 239 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "g.ini"][!Update][!Refresh Screensaver][!Refresh] 240 | 241 | 242 | [Wall8Icon] 243 | Meter=Image 244 | X=210 245 | Y=50R 246 | ImageName=#@#Resources\8-modified.png 247 | DynamicVariables=1 248 | ImageAlign=Center 249 | PreserveAspectRatio=1 250 | H=(56.25) 251 | W=(100) 252 | MouseOverAction=[!SetOption Wall8Icon ImageName "#@#Resources\8-alt.png"][!update] 253 | MouseLeaveAction=[!SetOption Wall8Icon ImageName "#@#Resources\8-modified.png"][!update] 254 | LeftMouseUpAction=[!ActivateConfig "Screensaver" "h.ini"][!Update][!Refresh Screensaver][!Refresh] 255 | 256 | ;------------------------------------------------------------- 257 | ;------------------------------------------------------------- 258 | 259 | -------------------------------------------------------------------------------- /a.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/a.ini -------------------------------------------------------------------------------- /b.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/b.ini -------------------------------------------------------------------------------- /c.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/c.ini -------------------------------------------------------------------------------- /d.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/d.ini -------------------------------------------------------------------------------- /e.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/e.ini -------------------------------------------------------------------------------- /f.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/f.ini -------------------------------------------------------------------------------- /g.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/g.ini -------------------------------------------------------------------------------- /h.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/h.ini -------------------------------------------------------------------------------- /music/Wide.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Runixe786/Winlock/c8b67e0bb01dc22284daa5648372d113806f0a9f/music/Wide.ini --------------------------------------------------------------------------------