marcopixel / SysDash

A simple and clean system monitoring skin for Rainmeter.
MIT License
170 stars 31 forks source link

GPU usage (total+byprocess) and VRAM usage #45

Open 15w34r0n3D4y opened 5 years ago

15w34r0n3D4y commented 5 years ago

Hey, can someone add in this skin top GPU usage (byprocess) + total GPU usage and total VRAM usage.. it use UsageMonitor plugin.

TOP GPU (byprocess) and total VRAM usage code:

`[TopGPU] Measure=Plugin Plugin=UsageMonitor Alias=GPU Index=1 MinValue=0 MaxValue=100 Blacklist=dwm|csrss

[TotalVRAM] Measure=Plugin Plugin=UsageMonitor Alias=VRAM Index=0 MinValue=0 MaxValue=4831838208

[TotalVRAMScaled] Measure=Calc Formula=TotalVRAM

; Meters [AllStyle] FontSize=11 FontWeight=400 FontColor=255,255,255,255 AntiAlias=1 DynamicVariables=1

[RightStyle] X=360 StringAlign=Right

[MeterTopGPULabel] Meter=String MeterStyle=AllStyle Y=3R Text=Top GPU Usage

[MeterTopGPUValues] Meter=String MeterStyle=AllStyle | RightStyle Y=0r Text=[TopGPU] : [TopGPU:1]%

[MeterTotalVRAMLabel] Meter=String MeterStyle=AllStyle Y=3R Text=Total VRAM Usage

[MeterTotalVRAMValues] Meter=String MeterStyle=AllStyle | RightStyle MeasureName=TotalVRAMScaled Y=0r AutoScale=1 NumOfDecimals=1 Text=[TotalVRAM] : %1B`

Total GPU usage code:

[GPU] Measure=Plugin Plugin=UsageMonitor Alias=GPU Index=0 MinValue=0 MaxValue=100 Blacklist=dwm|csrss

Thank you.