├── .gitignore ├── Example └── main.swift ├── LICENSE ├── README.md ├── SystemKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── SystemKit.xcscheme ├── SystemKit ├── Battery.swift ├── IOReturn.swift ├── Info.plist ├── Process.swift ├── System.swift └── SystemKit.h └── SystemKitTests ├── Info.plist └── SystemKitTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/Example/main.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/README.md -------------------------------------------------------------------------------- /SystemKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SystemKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SystemKit.xcodeproj/xcshareddata/xcschemes/SystemKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit.xcodeproj/xcshareddata/xcschemes/SystemKit.xcscheme -------------------------------------------------------------------------------- /SystemKit/Battery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/Battery.swift -------------------------------------------------------------------------------- /SystemKit/IOReturn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/IOReturn.swift -------------------------------------------------------------------------------- /SystemKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/Info.plist -------------------------------------------------------------------------------- /SystemKit/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/Process.swift -------------------------------------------------------------------------------- /SystemKit/System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/System.swift -------------------------------------------------------------------------------- /SystemKit/SystemKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKit/SystemKit.h -------------------------------------------------------------------------------- /SystemKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKitTests/Info.plist -------------------------------------------------------------------------------- /SystemKitTests/SystemKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beltex/SystemKit/HEAD/SystemKitTests/SystemKitTests.swift --------------------------------------------------------------------------------