├── .gitignore ├── .travis.yml ├── Icon.png ├── Icon.pxm ├── LICENSE ├── README.md ├── Small Icon.png ├── Small Icon.pxm ├── SystemInfoKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Rick.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── SystemInfoKit.xcscheme │ │ └── SystemInfoKitTests.xcscheme └── xcuserdata │ └── Rick.xcuserdatad │ └── xcschemes │ ├── SystemInfoKit Release.xcscheme │ └── xcschememanagement.plist ├── SystemInfoKit.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── Rick.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── SystemInfoKit ├── Info.plist ├── JSKCommon.h ├── JSKDBatteryReport.h ├── JSKDBatteryReport.m ├── JSKDCPUReport.h ├── JSKDCPUReport.m ├── JSKDSystemReport.h ├── JSKDSystemReport.m ├── JSKDevice.h ├── JSKDevice.m ├── JSKMNetworkReport.h ├── JSKMNetworkReport.m ├── JSKSMC.h ├── JSKSMC.m ├── JSKSystemMonitor.h ├── JSKSystemMonitor.m ├── SMCWrapper.h ├── SMCWrapper.m ├── SystemInfoKit.h └── smc.h └── SystemInfoKitTests ├── Info.plist └── SystemInfoKitTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/Icon.png -------------------------------------------------------------------------------- /Icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/Icon.pxm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/README.md -------------------------------------------------------------------------------- /Small Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/Small Icon.png -------------------------------------------------------------------------------- /Small Icon.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/Small Icon.pxm -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/project.xcworkspace/xcuserdata/Rick.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/project.xcworkspace/xcuserdata/Rick.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/xcshareddata/xcschemes/SystemInfoKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/xcshareddata/xcschemes/SystemInfoKit.xcscheme -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/xcshareddata/xcschemes/SystemInfoKitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/xcshareddata/xcschemes/SystemInfoKitTests.xcscheme -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/xcuserdata/Rick.xcuserdatad/xcschemes/SystemInfoKit Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/xcuserdata/Rick.xcuserdatad/xcschemes/SystemInfoKit Release.xcscheme -------------------------------------------------------------------------------- /SystemInfoKit.xcodeproj/xcuserdata/Rick.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcodeproj/xcuserdata/Rick.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SystemInfoKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SystemInfoKit.xcworkspace/xcuserdata/Rick.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcworkspace/xcuserdata/Rick.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SystemInfoKit.xcworkspace/xcuserdata/Rick.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit.xcworkspace/xcuserdata/Rick.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SystemInfoKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/Info.plist -------------------------------------------------------------------------------- /SystemInfoKit/JSKCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKCommon.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKDBatteryReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDBatteryReport.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKDBatteryReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDBatteryReport.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKDCPUReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDCPUReport.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKDCPUReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDCPUReport.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKDSystemReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDSystemReport.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKDSystemReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDSystemReport.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDevice.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKDevice.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKMNetworkReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKMNetworkReport.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKMNetworkReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKMNetworkReport.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKSMC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKSMC.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKSMC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKSMC.m -------------------------------------------------------------------------------- /SystemInfoKit/JSKSystemMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKSystemMonitor.h -------------------------------------------------------------------------------- /SystemInfoKit/JSKSystemMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/JSKSystemMonitor.m -------------------------------------------------------------------------------- /SystemInfoKit/SMCWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/SMCWrapper.h -------------------------------------------------------------------------------- /SystemInfoKit/SMCWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/SMCWrapper.m -------------------------------------------------------------------------------- /SystemInfoKit/SystemInfoKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/SystemInfoKit.h -------------------------------------------------------------------------------- /SystemInfoKit/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKit/smc.h -------------------------------------------------------------------------------- /SystemInfoKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKitTests/Info.plist -------------------------------------------------------------------------------- /SystemInfoKitTests/SystemInfoKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xythobuz/JSystemInfoKit/HEAD/SystemInfoKitTests/SystemInfoKitTests.m --------------------------------------------------------------------------------