Posted
Filed under 개발/게임

캐릭터


배경


아이콘


이미지


사운드


BGM Only


SE Only

2021/09/26 20:04 2021/09/26 20:04
Posted
Filed under 개발/그외
윈도우 작업표시줄에 시스템 사용현황을 보여주는 유틸리티.
https://xhmikosr.github.io/perfmonbar/

파라미터는 다음 사이트를 참조
https://docs.microsoft.com/en-us/previous-versions/office/exchange-server-2007/cc671175(v=exchg.80)?redirectedfrom=MSDN

내 환경설정

[code]
<?xml version="1.0" encoding="utf-8"?>
<!-- you can reload the configuration file with right click -> Performance Monitor - (Reload Configuration) -->
<perfbar>
    <counters>
        <!-- you can run `typeperf -q>counters.txt` to list all available counters on your system -->
        <counter name="cpu" value="\Processor Information(_Total)\% Processor Time"/>
        <counter name="mem" value="\Memory\Committed Bytes"/>
        <counter name="netin" value="\Network Interface(Intel[R] Ethernet Connection [2] I219-V)\Bytes Received/sec"/>
        <counter name="netout" value="\Network Interface(Intel[R] Ethernet Connection [2] I219-V)\Bytes Sent/sec"/>        
        <!-- <counter name="netin" value="\Network Interface(Realtek PCIe GBE Family Controller)\Bytes Received/sec"/> -->
        <!-- <counter name="netout" value="\Network Interface(Realtek PCIe GBE Family Controller)\Bytes Sent/sec"/> -->
        <counter name="freediskC" value="\LogicalDisk(C:)\Free Megabytes"/>
        <counter name="processCount" value="\System\Processes"/>
        <counter name="diskread" value="\LogicalDisk(C:)\Disk Read Bytes/sec"/>
        <counter name="diskwrite" value="\LogicalDisk(C:)\Disk Write Bytes/sec"/>
    </counters>
    <pages>
        <!-- use left button click on the performance bar to switch between the pages -->
        <page offsetY="6">
            <lines>
                <line fontFamily="Segoe UI" fontSize="8" fontItalic="false" fontBold="true" fontColor="FFFFFF">
                    <!-- you can use the "characters" attribute to ensure a minimum length of the displayed value -->
                    <!-- <display prefix="CPU: " suffix="% " counter="cpu" characters="3"/> -->
                    <display prefix="CPU: " suffix="% " counter="cpu"/>
                    <display prefix="· RAM: " suffix=" GB" counter="mem" decimals="2" divide="1073741824"/>
                </line>
                <line fontFamily="Segoe UI" fontSize="8" fontItalic="false" fontBold="true" fontColor="FFFFFF">
                    <!-- <display prefix="Proc: " suffix="" counter="processCount"/> -->
                    <display prefix="D: " suffix=" MB/s" counter="netin" decimals="1" divide="1048576"/>
                    <display prefix=" ▼▲ U: " suffix="MB/s" counter="netout" decimals="1" divide="1048576"/>
                    <!-- <display prefix="D: " suffix="KB/s" counter="netin" decimals="0" divide="1024"/> -->
                    <!-- <display prefix=" || U: " suffix="KB/s" counter="netout" decimals="0" divide="1024"/> -->
                </line>
            </lines>
        </page>
        <page offsetY="6">
            <lines>
                <line fontFamily="Segoe UI" fontSize="8" fontItalic="false" fontBold="true" fontColor="FFFFFF">
                    <display prefix="Free C: " suffix=" GB" counter="freediskC" decimals="1" divide="1024"/>
                </line>
                <line fontFamily="Segoe UI" fontSize="8" fontItalic="false" fontBold="true" fontColor="FFFFFF">
                    <display prefix="R: " suffix="MB/s " counter="diskread" decimals="2" divide="1048576" />
                    <display prefix="W: " suffix="MB/s" counter="diskwrite" decimals="2" divide="1048576" />
                </line>

            </lines>
        </page>
    </pages>
    <settings minSizeX="10" minSizeY="10">
    </settings>
</perfbar>

[/code]
2021/09/22 10:45 2021/09/22 10:45