Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LennardKittner/CPUMonitor
A macOS menubar app that shows memory and CPU usage.
https://github.com/LennardKittner/CPUMonitor
cpu-monitoring macos memory menubar qol swift swiftui
Last synced: 3 months ago
JSON representation
A macOS menubar app that shows memory and CPU usage.
- Host: GitHub
- URL: https://github.com/LennardKittner/CPUMonitor
- Owner: LennardKittner
- License: mit
- Created: 2022-10-22T16:40:17.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-01T22:02:02.000Z (about 1 year ago)
- Last Synced: 2024-06-19T03:52:36.358Z (5 months ago)
- Topics: cpu-monitoring, macos, memory, menubar, qol, swift, swiftui
- Language: Swift
- Homepage:
- Size: 1.54 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Mac-Menubar-Megalist - CPUMonitor
README
# CPUMonitor
A macOS menubar app that shows memory and CPU usage.## Features
The current CPU utilization is shown in the menu bar.![MenuItem](./screenshots/MenuItem.png)
![MenuItem2](./screenshots/MenuItem2.png)The menu bar item menu shows the current memory usage.
![Mem](./screenshots/Mem.png)
![Mem2](./screenshots/Mem2.png)
## Requirements and Versions
The standard version makes use of APIs that are only available on **MacOS13** and later. An older version for earlier versions of MacOS is included in the **MacOS12 branches**. The older version has fewer features, e.g. no start at login via app preferences.## Installation
You can compile the app yourself using xcode `open project in xcode > cmd + b` or you can download a compiled version from [releases](https://github.com/Lennard599/CPUMonitor/releases).## FAQ
**Why is the overall memory usage plus the free memory less than the total memory?**
The system will use as much memory as possible, so the free part is often very small. The overall memory usage shows only how much memory is actively used by the system.
Here are the different categories of memory
- Overall usage: active + wired
- Free: free memory
- Inactive: memory used by closed apps to speed up the next launch
- Compressed: compresed memory
- Active: actively used user memory
- Wired: actively used system (kernel) memory## Links
[ClipBoardManager menu bar app](https://github.com/Lennard599/ClipBoardManager)