# monitor **Repository Path**: tornadory2017/monitor ## Basic Information - **Project Name**: monitor - **Description**: fork of monitor - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-12-08 - **Last Updated**: 2023-12-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Monitor

Manage processes and monitor system resources

Buy Me A Coffee Release GitHub Workflow Status

![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-processes.png) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-system.png) ![Monitor Screenshot](https://github.com/stsdc/monitor/raw/dev/data/screenshots/monitor-containers.png) ## Install ### elementary OS 7 Horus If you have never added a PPA on your system before, you might need to run this command first: ```bash sudo apt install -y software-properties-common ``` Add the PPA of Monitor and then install it: ```bash sudo add-apt-repository ppa:stsdc/monitor sudo apt install com.github.stsdc.monitor ``` Monitor will be available from the Applications menu. ### ~~Fedora (36)~~ > [!WARNING] > Dropped support due to lack of Pantheon dependencies on COPR. ```bash sudo dnf copr enable stsdc/monitor sudo dnf install com.github.stsdc.monitor ``` ## Development ### Install dependencies Check dependencies in [the deb control file](debian/control). ### Clone, Build & Install 1. Clone: ```bash git clone --recursive https://github.com/stsdc/monitor cd monitor ``` 2. To build with the wingpanel indicator: ```bash meson builddir --prefix=/usr -Dindicator-wingpanel=enabled ``` Alternatively, to build without the wingpanel indicator: ```bash meson builddir --prefix=/usr ``` 3. Install: ```bash cd builddir sudo ninja install ``` ### Debug logging ```bash G_MESSAGES_DEBUG=all GTK_DEBUG=interactive com.github.stsdc.monitor ```