ColorChanger plugin help
Changes the value of a <color> parameter of any sensor you wish.
Parameter explanation:
Besides 'update' and 'dedicated', it uses the five parameters listed below.
'inputValue ' is the sensor that you wish to monitor.
'warnLimit ' is the value (of 'inputValue ') at which to change to the warning color.
'criticalLimit ' is the value (of 'inputValue ') at which to change to the critical color.
'normalColor ': All is well color.
'warnColor ': Things are getting up there color.
'criticalColor ': Might want to have a look under the hood color.
code example:
<visual name="Text"> <parameters> <top>75</top> <left>90</left> <width>150</width> <height>13</height> <font>mints-mild</font> <size>6</size> <color> <sensor name="Color Changer.Color Changer" update="1" dedicated="yes"> <parameters> <inputvalue> <sensor name="Disksize.Diskused" update="1" dedicated="yes"> <parameters> <drive>C:</drive> <format>percent</format> </parameters> </sensor> </inputvalue> <warnlimit>60</warnlimit> <criticallimit>90</criticallimit> <normalcolor>clblue</normalcolor> <warncolor>clyellow</warncolor> <criticalcolor>clred</criticalcolor> </parameters> </sensor> </color> <bold>yes</bold> <background>clblack</background> </parameters> <content> <sensor name="Disksize.Diskused" update="1"> <parameters> <drive>C:</drive> <format>percent</format> </parameters> </sensor> </content> </visual>