In Rainmeter you can’t add comments on the same line of a value.
So these:
Are invalid values
These:
Are valid.
The same applies to all the sections you have similar syntax. All those will cause issues.
To properly comment something you have to add the comment on a separate line:
So these:
Code:
DISK_D_TEMP_INDEX=5 ; My HDD D:DISK_C_TEMP_INDEX=6 ; My SSD C:
These:
Code:
DISK_D_TEMP_INDEX=5DISK_C_TEMP_INDEX=6
The same applies to all the sections you have similar syntax. All those will cause issues.
To properly comment something you have to add the comment on a separate line:
Code:
; My HDD D:DISK_D_TEMP_INDEX=5; My SSD C:DISK_C_TEMP_INDEX=6
Statistics: Posted by RicardoTM — Yesterday, 6:06 pm