archey4/archey/entries/processes.py
2022-09-18 11:09:21 +02:00

16 lines
384 B
Python

"""Processes entry class"""
from archey.entry import Entry
from archey.processes import Processes as ProcessesUtil
class Processes(Entry):
"""
Simple wrapper to `archey.processes` to provide the number of running processes as an entry.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.value = ProcessesUtil().number