It is currently April 19th, 2024, 12:35 pm

Mond Rainmeter theme

Get help with creating, editing & fixing problems with skins
oclt7
Posts: 2
Joined: February 19th, 2023, 12:04 pm

Mond Rainmeter theme

Post by oclt7 »

I need some help, im trying to figure out how can i delete the digital clock (the one that is like this under the date---> -15:43-) part of the Mond Rainmeter theme, i tried searching how to hide it but i dont find anything.

If its posible to delete it or hide it using the code, i would like to know how to do it, Thnks :)

Here is the code so you can tell me where and what to do:

Code: Select all

[Rainmeter]
Update=1000
Author=Connect-R
BackgroundMode=2
SolidColor=0,0,0,1
DynamicWindowSize=1
AccurateText=1
MouseScrollUpAction=[!SetVariable Scale "(#Scale#+#ScrollMouseIncrement#)"][!WriteKeyValue Variables Scale "(#Scale#+#ScrollMouseIncrement#)"][!Refresh] 
MouseScrollDownAction=[!SetVariable Scale "(#Scale#-#ScrollMouseIncrement# < 0.5 ? 0.5 : #Scale#-#ScrollMouseIncrement#)"][!WriteKeyValue Variables Scale "(#Scale#-#ScrollMouseIncrement# < 0.5 ? 0.5 : #Scale#-#ScrollMouseIncrement#)"][!Refresh] 
LeftMouseDoubleClickAction=!ToggleConfig "Mond\Settings" "Settings.ini"

[Variables]
@include=#@#Variables.inc
@include2=#@#Language\#Language#.inc
Scale=1.06

;-------------------------------------------------------------
;-------------------------------------------------------------

[MeasureTime]
Measure=Time
Format="%#Format#:%M"

[MeasureAmPm]
Measure=Time
Format="%p"

[MeasureDay]
Measure=Time
Format=%A
Substitute=#Date#

[MeasureDate]
Measure=Time
Format=%d  %B,  %Y.
Substitute=#Date#

;-------------------------------------------------------------
;-------------------------------------------------------------

[Meter24hClock]
Meter=String
MeasureName=MeasureTime
StringAlign=Center
StringCase=Upper
FontFace=Quicksand
FontColor=#TextColor#
FontSize=(14*#Scale#)
X=(340*#Scale#)
Y=(120*#Scale#)
Text="-%1-"
AntiAlias=1
Hidden=#Hidden#

[Meter12hClock]
Meter=String
MeasureName=MeasureTime
MeasureName2=MeasureAmPm
StringAlign=Center
StringCase=Upper
FontFace=Quicksand
FontColor=#TextColor#
FontSize=(14*#Scale#)
X=(340*#Scale#)
Y=(120*#Scale#)
Text="-%1 %2-"
AntiAlias=1
Hidden=#Hidden2#

[MeterDay]
Meter=String
MeasureName=MeasureDay
StringAlign=Center
StringCase=Upper
FontFace=Anurati
FontColor=#TextColor#
FontSize=(40*#Scale#)
X=(340*#Scale#)
Y=(0*#Scale#)
Text="%1"
InlineSetting=CharacterSpacing | 10 | 10
AntiAlias=1
DynamicVariables=1

[MeterDate]
Meter=String
MeasureName=MeasureDate
StringAlign=Center
StringCase=Upper
FontFace=Quicksand
FontColor=#TextColor#
FontSize=(14*#Scale#)
X=(340*#Scale#)
Y=(75*#Scale#)
Text="%1"
AntiAlias=1
Last edited by balala on February 19th, 2023, 3:03 pm, edited 1 time in total.
Reason: Please use <code> tags whenever are posting codes. It's the </> button.
User avatar
xenium
Posts: 865
Joined: January 4th, 2018, 9:52 pm

Re: Mond Rainmeter theme

Post by xenium »

oclt7 wrote: February 19th, 2023, 12:15 pm I need some help, im trying to figure out how can i delete the digital clock (the one that is like this under the date---> -15:43-) part of the Mond Rainmeter theme, i tried searching how to hide it but i dont find anything.

If its posible to delete it or hide it using the code, i would like to know how to do it, Thnks :)
Go to Documents\Rainmeter\Skins\Mond\@Resources, open the Variables file and edit:
Hidden=1
Hidden2=1

Then refresh the skin
oclt7
Posts: 2
Joined: February 19th, 2023, 12:04 pm

Re: Mond Rainmeter theme

Post by oclt7 »

Thanks man, it worked, extremely useful and simple ;)