A rewrite of CPU Meter for Alder Lake CPUs is coming... eventually.
Code: Select all
v1.8.2 - 2022-4-7
Fixed:
- [GPU Meter] NVIDIA was not being auto-detected in all cases (#273)
- [Weather Meter] Updated Weather.com API key (#274)
Code: Select all
v1.8.2 - 2022-4-7
Fixed:
- [GPU Meter] NVIDIA was not being auto-detected in all cases (#273)
- [Weather Meter] Updated Weather.com API key (#274)
Code: Select all
Parameter=reg query HKEY_CURRENT_USER\SOFTWARE\HWiNFO64\VSB
Hiraiguard wrote: ↑March 27th, 2019, 7:04 pm You can customize the date/time formats through the settings skin that he screenshotted. I assume that is what he did.
By default, Chronometer will use the Windows regional settings for the date/time formats (you can change these formats through the Windows settings app). However, I added an option to override these using the Rainmeter time codes.
Click the wrench icon and select Chronometer settings.Jinx wrote: ↑May 12th, 2022, 9:50 pm Hi
I have the same issue with the day of the week not showing up (just the date is showing as May 12, 2022). I will go check the Windows settings but I would prefer to use these Rainmeter time codes you mentioned. Can you be more specific on how and where to make these code modifications? Thank you.
I must have installed something wrong because I don't have those custom options available to use. When I clicked the Chronometer wrench, it opens the Chronometer Settings window and I don't have the other options to possibly choose (Global settings, HWiNFO settings, and Gadget manager) and I do have HWiNFO installed. Not sure if this is a symptom of what I have installed incorrectly.SilverAzide wrote: ↑May 12th, 2022, 10:16 pm Click the wrench icon and select Chronometer settings.Clock.png
Change the Date Format setting to Custom. Change the format to %A, %b %#d, %Y, or whatever you prefer.Settings.png
More info on date format codes can be found here: Format Codes.
The problem is that you posted your question in the wrong thread. This is the ModernGadgets thread, so I assumed you were using that suite. You are using the Gadgets suite, so the instructions are different.Jinx wrote: ↑May 13th, 2022, 5:57 am I must have installed something wrong because I don't have those custom options available to use.
Screenshot 2022-05-13 013136.png
When I clicked the Chronometer wrench, it opens the Chronometer Settings window and I don't have the other options to possibly choose (Global settings, HWiNFO settings, and Gadget manager) and I do have HWiNFO installed. Not sure if this is a symptom of what I have installed incorrectly.
I'm using Rainmeter 4.5.13.3632 and Gadgets 7.3.0. The problem exists in Windows 10 and 11.
Since you mentioned the Date Format Codes, I checked that out and figured out that a manual update of the Format in the Digital Clock.INI can fix the issue I am having as given below.
[MeasureDate]
Measure=Time
TimeZone=#TzOffset#
DaylightSavingTime=#UseDST#
FormatLocale=#LocaleName#
Format=%A, %B %#d, %Y
;Format=#FmtLongDate#
I would like to have that robust Format Customization to make life easier since that would work if I ever have to start over again and I'm sure I will have forgotten what I did manually to the INI file.
Thoughts on why my setup is so different that I don't have the customization options?
Thanks for your time.
Code: Select all
; digital clock formatting (see: https://docs.rainmeter.net/manual/measures/time)
;
; the following variables are set based on Windows Regional Settings; do not change unless the
; "Use Windows Regional Settings" option is unchecked in the Chronometer Settings skin
;
FmtClock="%#I:%M"
FmtLongDate="%A, %b %#d, %Y"
Thank you for the information. It hadn't occurred to me there was two similarly named skins. This forum happen to be the one that came up when I googled for information. I appreciate your taking the time to answer the question even while I was in the wrong forum.SilverAzide wrote: ↑May 13th, 2022, 7:33 pm The problem is that you posted your question in the wrong thread. This is the ModernGadgets thread, so I assumed you were using that suite. You are using the Gadgets suite, so the instructions are different.
Normally, the Chronometer should select the correct display using your Windows locale settings. To override this setting, uncheck the Use Windows Regional Settings option. Next, navigate to the folder where your Gadgets are installed (normally, this is C:\Users\<username>\Documents\Rainmeter\Skins\Gadgets, unless you have changed the default location). In the @Resources folder, open the ChronometerVariables.inc file with Notepad or your preferred editor. Locate the following section of code:
Change the FmtLongDate variable to the format string you want. One warning: the format string you posted above uses "%B" for the month. If you use this code, the full month name will be displayed, which will be too long to fit in the space provided when the month names are longer. It is up to you however.Code: Select all
; digital clock formatting (see: https://docs.rainmeter.net/manual/measures/time) ; ; the following variables are set based on Windows Regional Settings; do not change unless the ; "Use Windows Regional Settings" option is unchecked in the Chronometer Settings skin ; FmtClock="%#I:%M" FmtLongDate="%A, %b %#d, %Y"
If/When you upgrade your Gadgets someday in the future, your settings will be preserved, so you won't lose the changes you make to the variables.