{% if daemon_hogs %}

Daemon Hogs (background services)

These are launchd-managed services or background scripts running without a visible app window.
{% for p in daemon_hogs %} {% endfor %}
ServiceCPU %What it is
{{ p.name }} ({{ p.pid }}) {{ cpu_bar(p.cpu, max_daemon_cpu) }} {{ process_action(p.name, p.cmdline) }}
{% endif %} {% if app_cpu_hogs %}

CPU Hogs (right now)

{% for p in app_cpu_hogs %} {% endfor %}
ProcessCPU (of {{ cores * 100 }}% total)MEM (of {{ ram_gb }} GB)What it is
{{ p.name }} ({{ p.pid }}) {{ cpu_bar(p.cpu, max_app_cpu) }} {{ mem_gb(p.mem, ram_gb) }} GB {{ process_action(p.name, p.cmdline) }}
{% endif %} {% if mem_hogs %}

Memory Hogs (right now)

{% for p in mem_hogs %} {% endfor %}
ProcessMEM (of {{ ram_gb }} GB)CPUWhat it is
{{ p.name }} ({{ p.pid }}) {{ mem_bar(p.mem, max_mem_pct, ram_gb) }} {{ p.cpu }}% {{ process_action(p.name, p.cmdline) }}
{% endif %}