![]() |
System Monitor v4.0.2 beta - Printable Version +- Tordex Community (http://forum.tordex.com) +-- Forum: True Launch Bar plugins (http://forum.tordex.com/forum-4.html) +--- Forum: Plugin features and improvements (http://forum.tordex.com/forum-15.html) +--- Thread: System Monitor v4.0.2 beta (/thread-4357.html) Pages:
1
2
|
System Monitor v4.0.2 beta - Yuri Kobets - 10-19-2012 System Monitor v4.0.2 beta is released for True Launch Bar New beta version supports the new skins format. This version can read the information from CoreTemp, GPU-Z and Open hardware Monitor applications to show the CPU temperature and graphics adapter parameters (temperature, fan speed etc.). Other beta versions features:
Home page Download RE: System Monitor v4.0.2 beta - unlogic - 11-04-2012 Hi Yuri, The support for Open hardware Monitor in the System Monitor is very welcome however the link to the "skins specifications" is broken on this page: http://www.truelaunchbar.com/plugins/sysmon.php It would be great with an example showing how to display values from Open hardware Monitor in a System Monitor skin. /Unlogic RE: System Monitor v4.0.2 beta - Yuri Kobets - 11-04-2012 Oh, sorry... documentation is my nightmare ![]() First, all skin files must be placed into single folder. Now what files are required. File MemonSkin.ini This file describes the skin. Usually it have content like this: Code: [options] Files main.xml and core.xml These files are describe the skin appearance and they are in XML format. main.xml describes the main skin part and core.xml describes the skin for CPU cores. The you can find the schema of the skins file here: http://www.truelaunchbar.com/xml/tlbskins.xsd The best way to make these files is using any XML editor with autocomplete feature. Below is the list of parameters that can be used in the skin: Values for main.xml CPU - cpu load in percents CPU_FREE = 100 - CPU PHYS_TOTAL - total physical memory PHYS_USED - used physical memory PHYS_USED_P - physical memory in percents PHYS_FREE - free physical memory PHYS_FREE_P - free physical memory in percents VIRT_TOTAL - total virtual memory VIRT_USED - used virtual memory VIRT_USED_P - used virtual memory in percents VIRT_FREE - free virtual memory VIRT_FREE_P - free virtual memory in percent PAGE_TOTAL - total page file size PAGE_FREE - free page file size PAGE_FREE_P - page file size in percents PAGE_USED - used page file size PAGE_USED_P - used page file size in percents GPU_CORE_CLOCK - GPU core clock GPU_MEM_CLOCK - GPU memory clock GPU_SHADER_CLOCK - GPU shader clock GPU_FAN_RPM - GPU fan seed in RPM GPU_MEM_USED - GPU memory used GPU_FAN_SPEED - GPU fan speed (can be used in histograms only) GPU_FAN_SPEED_FREE - max_fan_speed - GPU_FAN_SPEED (can be used in charts only) GPU_LOAD - GPU load in percents GPU_LOAD_FREE = 100 - GPU_LOAD (can be used in charts only) GPU_MEM_LOAD - GPU memory used in percents GPU_MEM_LOAD_FREE = 100 - GPU_MEM_LOAD (can be used in charts only) GPU_VIDEO_LOAD - GPU video engine load in percents GPU_VIDEO_LOAD_FREE = 100 - GPU_VIDEO_LOAD (can be used in charts only) GPU_TEMP - GPU temperature. GPU_TEMP_FREE = max_gpu_temperature - GPU_TEMP (can be used in charts only) Values for core.xml CPU - core load in percents CPU_FREE = 100 - CPU COREIDX - core index CPUIDX - CPU index TEMP - core temperature TEMP_MAX - maximum core temperature TEMP_FREE = TEMP_MAX - TEMP Now the simple example of the main.xml file: Code: <?xml version="1.0" encoding="utf-8"?> Please let me know if you have any question about skins, I'll try to assist you. RE: System Monitor v4.0.2 beta - unlogic - 11-06-2012 (11-04-2012, 02:07 PM)Yuri Kobets Wrote: Oh, sorry... documentation is my nightmare Thank you for a quick reply Yuri. I'm a developer myself so I know that documentation can be a daunting task. I must say that the move from ini files to XML files with schemas is very welcome. I'm trying to port my old System Monitor skin to the new XML format. Here is a small screenshot: ![]() How do I get the graphs for each CPU core placed on top of each other in front of the background image? RE: System Monitor v4.0.2 beta - Yuri Kobets - 11-06-2012 I'm sorry I forget some additional parameters in the ini file for multicore skins. core_dock - (left, right, top, bottom) defines the side where the cores attached to the main skin. core_slice_mode - if row the core_rows_cols means number of rows, if col core_rows_cols the means the number of columns core_rows_cols - number of rows of columns, depending of core_slice_mode value. So to make the skins for cores, you have to add the values into MemonSkin.ini: Code: core_dock = left Now you have to create the core.xml Something like this: Code: <?xml version="1.0" encoding="utf-8"?> RE: System Monitor v4.0.2 beta - Poni - 12-02-2012 Does this support Open hardware Monitor cpu fanspeed? if yes how? if no, i request that it supports later ![]() RE: System Monitor v4.0.2 beta - Yuri Kobets - 12-02-2012 (12-02-2012, 09:13 AM)Poni Wrote: Does this support Open hardware Monitor cpu fanspeed? if yes how? if no, i request that it supports later Yes, I'll add FANs in the next version. RE: System Monitor v4.0.2 beta - schelle - 02-22-2013 Hello, I try the new system monitor and I have some questions: How can I use TEMP in Celsius not Farenheit? How can I use Units (Percent) in (for example) CPU_FREE? How can I use own text, for example "Used Memory = " PHYS_USED? I want more at the same skin. This is my skin for Memory in Gigabyte. How can I use in the same skin memory in Gigabyte AND percent? This is my xml-file: <?xml version="1.0" encoding="utf-8"?> <skin width="256" height="16" fit="height" type="sysmon_main" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.truelaunchbar.com/xml/tlbskins.xsd"> <chart-h-row float="true" valign="stretch" halign="stretch"> <value src="PHYS_USED"> <state value="normal"> <brush type="yGradient" color1="rgb(000, 000, 255)" color2="rgb(000, 119, 255)" /> </state> </value> <value src="PHYS_FREE"> <brush type="yGradient" color1="rgb(128, 128, 128)" color2="rgb(192, 192, 192)" /> </value> </chart-h-row> <text src="PHYS_USED" font="DejaVu Sans Mono" units="right" font-size="20" float="true" valign="stretch" halign="stretch" align="left" v-center="true" bold="true" antialias="true"> <state value ="normal" color="white" /> </text> <text src="PHYS_FREE" font="DejaVu Sans Mono" units="right" font-size="20" float="true" valign="stretch" halign="stretch" align="center" v-center="true" bold="true" antialias="true"> <state value ="normal" color="white" /> </text> <text src="PHYS_FREE" font="DejaVu Sans Mono" units="right" font-size="20" float="true" valign="stretch" halign="stretch" align="right" v-center="true" bold="true" antialias="true"> <state value ="normal" color="white" /> </text> </skin> Thank you RE: System Monitor v4.0.2 beta - Yuri Kobets - 02-22-2013 Quote:How can I use TEMP in Celsius not Farenheit?The temperature units are defined in the plugin properties not in the skin. Quote:How can I use Units (Percent) in (for example) CPU_FREE?Hm... plugin does not set the units for CPU_FREE ![]() Quote:How can I use own text, for example "Used Memory = " PHYS_USED? You can use the node text-formated. Below is example: Code: <text-formated text="Used Memory = {PHYS_USED}" font="DejaVu Sans Mono" units="right" font-size="20" float="true" valign="stretch" halign="stretch" align="left" v-center="true" bold="true" antialias="true"> Quote:I want more at the same skin. This is my skin for Memory in Gigabyte. How can I use in the same skin memory in Gigabyte AND percent?I've attached the modified xml file to show this. RE: System Monitor v4.0.2 beta - schelle - 02-23-2013 Thank you for fast answering - works very fine. Quote:The temperature units are defined in the plugin properties not in the skin. Oh, oh. I see a lot of trees but i don't see the wood ![]() RE: System Monitor v4.0.2 beta - schelle - 03-29-2013 Hello, know I have a new Problem. I use GPU-Z and this Skincode for GPU FAN SPEED: Code: <?xml version="1.0" encoding="utf-8"?> If I use the same with GPU TEMP Code: <?xml version="1.0" encoding="utf-8"?> What is the different? RE: System Monitor v4.0.2 beta - Yuri Kobets - 03-29-2013 This is a bug. Plugin does not set the GPU_TEMP_FREE parameter. I'll make the update shortly. Thank you. RE: System Monitor v4.0.2 beta - Yuri Kobets - 04-01-2013 I've published the System Monitor v4.1 The GPU_TEMP_FREE now working. Also I've added some new parameters (from Open Hardware Monitor): fan speed: MB_FAN1 - MB_FAN4 Voltage: MB_VCORE MB_AVCC MB_3VCC MB_3VSB MB_VBAT PS. I'll announce this version some later. RE: System Monitor v4.0.2 beta - schelle - 04-02-2013 Hello, yes GPU_TEMP_FREE works know. But I try Open Hardware Monitor too and now the same problem with GPU_FAN_SPEED (FREE). And now I am wondering about another thing. I close all applications (coretemp, gpu-z and open hardware monitor) but CPU (FREE) works more and more. RE: System Monitor v4.0.2 beta - Yuri Kobets - 04-02-2013 Quote:But I try Open Hardware Monitor too and now the same problem with GPU_FAN_SPEED (FREE).Nobody report the maximum fan speed ![]() Quote:And now I am wondering about another thing. I close all applications (coretemp, gpu-z and open hardware monitor) but CPU (FREE) works more and more.System Monitor can take the cpu load without any programs. |