Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beltex/SystemKit
macOS system library in Swift
https://github.com/beltex/SystemKit
Last synced: 4 months ago
JSON representation
macOS system library in Swift
- Host: GitHub
- URL: https://github.com/beltex/SystemKit
- Owner: beltex
- License: mit
- Created: 2014-10-02T23:41:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T18:58:47.000Z (over 2 years ago)
- Last Synced: 2024-04-14T19:10:24.891Z (10 months ago)
- Language: Swift
- Homepage:
- Size: 140 KB
- Stars: 352
- Watchers: 11
- Forks: 65
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
SystemKit
=========A macOS system library in Swift based off of
[libtop](http://www.opensource.apple.com/source/top/top-100.1.2/libtop.c), from
Apple's top implementation.- For an example usage of this library, see
[dshb](https://github.com/beltex/dshb), a macOS system monitor in Swift
- For other system related statistics in Swift for macOS, see
[SMCKit](https://github.com/beltex/SMCKit)### Requirements
- [Xcode 8.3.3](https://developer.apple.com/xcode/downloads/)
- macOS 10.9+
- This is due to Swift### Installation
#### Carthage
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with [Homebrew](http://brew.sh) using the following command:
$ brew update
$ brew install carthageTo integrate SystemKit into your Xcode project using Carhage, specify it in your Cartfile:
github "beltex/SystemKit"
Run `carthage update` to build the framework and drag the built SystemKit.framework into your Xcode project.
Don't forget to alter your Carthage [building phase for macOS](https://github.com/Carthage/Carthage#if-youre-building-for-os-x).### Example
Sample ouput from
[example](https://github.com/beltex/SystemKit/blob/master/Example/main.swift).```
// MACHINE STATUS-- CPU --
PHYSICAL CORES: 2
LOGICAL CORES: 2
SYSTEM: 10%
USER: 17%
IDLE: 71%
NICE: 0%-- MEMORY --
PHYSICAL SIZE: 7.75GB
FREE: 1.33GB
WIRED: 866MB
ACTIVE: 5.04GB
INACTIVE: 516MB
COMPRESSED: 0MB-- SYSTEM --
MODEL: MacBookPro7,1
SYSNAME: Darwin
NODENAME: beltex.local
RELEASE: 13.4.0
VERSION: Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014...
MACHINE: x86_64
UPTIME: 6d 21h 4m 38s
PROCESSES: 197
THREADS: 967
LOAD AVERAGE: [3.18, 3.89, 3.99]
MACH FACTOR: [0.436, 0.385, 0.322]-- POWER --
CPU SPEED LIMIT: 100.0%
CPUs AVAILABLE: 2
SCHEDULER LIMIT: 100.0%
THERMAL LEVEL: Not Published-- BATTERY --
AC POWERED: true
CHARGED: true
CHARGING: false
CHARGE: 100.0%
CAPACITY: 1675 mAh
MAX CAPACITY: 1675 mAh
DESGIN CAPACITY: 5450 mAh
CYCLES: 646
MAX CYCLES: 1000
TEMPERATURE: 30.0°C
TIME REMAINING: 0:45
```### References
- [top](http://www.opensource.apple.com/source/top/)
- [hostinfo](http://www.opensource.apple.com/source/system_cmds/)
- [vm_stat](http://www.opensource.apple.com/source/system_cmds/)
- [PowerManagement](http://www.opensource.apple.com/source/PowerManagement/)
- iStat Pro### License
This project is under the **MIT License**.