gitextract_0i6vpw9i/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ ├── build.yaml │ ├── i18n.yaml │ └── linter.yaml ├── .gitignore ├── .swiftlint.yml ├── Kit/ │ ├── Supporting Files/ │ │ ├── Assets.xcassets/ │ │ │ ├── Contents.json │ │ │ ├── calendar.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── cancel.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── chart.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── close.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── refresh.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── settings.imageset/ │ │ │ │ └── Contents.json │ │ │ └── tune.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── Kit.h │ ├── Widgets/ │ │ ├── BarChart.swift │ │ ├── Battery.swift │ │ ├── Label.swift │ │ ├── LineChart.swift │ │ ├── Memory.swift │ │ ├── Mini.swift │ │ ├── NetworkChart.swift │ │ ├── PieChart.swift │ │ ├── Speed.swift │ │ ├── Stack.swift │ │ ├── State.swift │ │ ├── Tachometer.swift │ │ └── Text.swift │ ├── constants.swift │ ├── extensions.swift │ ├── helpers.swift │ ├── lldb/ │ │ ├── LICENSE.txt │ │ ├── include/ │ │ │ ├── c.h │ │ │ ├── cache.h │ │ │ ├── comparator.h │ │ │ ├── db.h │ │ │ ├── dumpfile.h │ │ │ ├── env.h │ │ │ ├── export.h │ │ │ ├── filter_policy.h │ │ │ ├── iterator.h │ │ │ ├── options.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── table.h │ │ │ ├── table_builder.h │ │ │ └── write_batch.h │ │ ├── libleveldb.a │ │ ├── lldb.h │ │ └── lldb.m │ ├── module/ │ │ ├── module.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── reader.swift │ │ ├── widget.swift │ │ └── window.swift │ ├── plugins/ │ │ ├── Charts.swift │ │ ├── DB.swift │ │ ├── Logger.swift │ │ ├── Reachability.swift │ │ ├── Remote.swift │ │ ├── Repeater.swift │ │ ├── Store.swift │ │ ├── SystemKit.swift │ │ └── Updater.swift │ ├── process.swift │ ├── scripts/ │ │ ├── SMJobBlessUtil.py │ │ ├── changelog.py │ │ ├── i18n.py │ │ ├── uninstall.sh │ │ └── updater.sh │ └── types.swift ├── LICENSE ├── LaunchAtLogin/ │ ├── Info.plist │ ├── LaunchAtLogin.entitlements │ └── main.swift ├── Makefile ├── Modules/ │ ├── Battery/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── readers.swift │ │ └── settings.swift │ ├── Bluetooth/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── readers.swift │ │ └── settings.swift │ ├── CPU/ │ │ ├── Info.plist │ │ ├── bridge.h │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── readers.swift │ │ ├── settings.swift │ │ └── widget.swift │ ├── Clock/ │ │ ├── config.plist │ │ ├── main.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── reader.swift │ │ └── settings.swift │ ├── Disk/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── header.h │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── readers.swift │ │ ├── settings.swift │ │ └── widget.swift │ ├── GPU/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── reader.swift │ │ ├── settings.swift │ │ └── widget.swift │ ├── Net/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── readers.swift │ │ ├── settings.swift │ │ └── widget.swift │ ├── RAM/ │ │ ├── Info.plist │ │ ├── config.plist │ │ ├── main.swift │ │ ├── notifications.swift │ │ ├── popup.swift │ │ ├── portal.swift │ │ ├── readers.swift │ │ ├── settings.swift │ │ └── widget.swift │ └── Sensors/ │ ├── Info.plist │ ├── bridge.h │ ├── config.plist │ ├── main.swift │ ├── notifications.swift │ ├── popup.swift │ ├── portal.swift │ ├── reader.m │ ├── readers.swift │ ├── settings.swift │ └── values.swift ├── README.md ├── SMC/ │ ├── Helper/ │ │ ├── Info.plist │ │ ├── Launchd.plist │ │ ├── main.swift │ │ └── protocol.swift │ ├── Makefile │ ├── main.swift │ └── smc.swift ├── Stats/ │ ├── AppDelegate.swift │ ├── Supporting Files/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── ac_unit.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── apps.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── bug.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── devices/ │ │ │ │ ├── Contents.json │ │ │ │ ├── imac.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── imacPro.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macMini.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macMini2020.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macMini2024.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macPro.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macPro2019.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macStudio.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macbookAir.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macbookAir4thGen.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macbookNeo.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── macbookPro.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── macbookPro5thGen.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── donate.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── high-battery.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── low-battery.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── pause.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── power.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── record.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── resume.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── settings.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── stop.imageset/ │ │ │ │ └── Contents.json │ │ │ └── support/ │ │ │ ├── Contents.json │ │ │ ├── github.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── ko-fi.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── patreon.imageset/ │ │ │ │ └── Contents.json │ │ │ └── paypal.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Stats/ │ │ │ └── en.xcloc/ │ │ │ ├── Localized Contents/ │ │ │ │ └── en.xliff │ │ │ ├── Source Contents/ │ │ │ │ ├── LaunchAtLogin/ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── ModuleKit/ │ │ │ │ │ └── Supporting Files/ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Modules/ │ │ │ │ │ ├── Battery/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── CPU/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Disk/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── GPU/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Memory/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Net/ │ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Sensors/ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Stats/ │ │ │ │ │ └── Supporting Files/ │ │ │ │ │ └── en.lproj/ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ └── StatsKit/ │ │ │ │ └── en.lproj/ │ │ │ │ └── InfoPlist.strings │ │ │ └── contents.json │ │ ├── Stats.entitlements │ │ ├── ar.lproj/ │ │ │ └── Localizable.strings │ │ ├── bg.lproj/ │ │ │ └── Localizable.strings │ │ ├── ca.lproj/ │ │ │ └── Localizable.strings │ │ ├── cs.lproj/ │ │ │ └── Localizable.strings │ │ ├── da.lproj/ │ │ │ └── Localizable.strings │ │ ├── de.lproj/ │ │ │ └── Localizable.strings │ │ ├── el.lproj/ │ │ │ └── Localizable.strings │ │ ├── en-AU.lproj/ │ │ │ └── Localizable.strings │ │ ├── en-GB.lproj/ │ │ │ └── Localizable.strings │ │ ├── en.lproj/ │ │ │ └── Localizable.strings │ │ ├── es.lproj/ │ │ │ └── Localizable.strings │ │ ├── et.lproj/ │ │ │ └── Localizable.strings │ │ ├── fa.lproj/ │ │ │ └── Localizable.strings │ │ ├── fi.lproj/ │ │ │ └── Localizable.strings │ │ ├── fr.lproj/ │ │ │ └── Localizable.strings │ │ ├── he.lproj/ │ │ │ └── Localizable.strings │ │ ├── hi.lproj/ │ │ │ └── Localizable.strings │ │ ├── hr.lproj/ │ │ │ └── Localizable.strings │ │ ├── hu.lproj/ │ │ │ └── Localizable.strings │ │ ├── id.lproj/ │ │ │ └── Localizable.strings │ │ ├── it.lproj/ │ │ │ └── Localizable.strings │ │ ├── ja.lproj/ │ │ │ └── Localizable.strings │ │ ├── ko.lproj/ │ │ │ └── Localizable.strings │ │ ├── menus.psd │ │ ├── nb.lproj/ │ │ │ └── Localizable.strings │ │ ├── nl.lproj/ │ │ │ └── Localizable.strings │ │ ├── pl.lproj/ │ │ │ └── Localizable.strings │ │ ├── popups.psd │ │ ├── pt-BR.lproj/ │ │ │ └── Localizable.strings │ │ ├── pt-PT.lproj/ │ │ │ └── Localizable.strings │ │ ├── ro.lproj/ │ │ │ └── Localizable.strings │ │ ├── ru.lproj/ │ │ │ └── Localizable.strings │ │ ├── sk.lproj/ │ │ │ └── Localizable.strings │ │ ├── sl.lproj/ │ │ │ └── Localizable.strings │ │ ├── sv.lproj/ │ │ │ └── Localizable.strings │ │ ├── th.lproj/ │ │ │ └── Localizable.strings │ │ ├── tr.lproj/ │ │ │ └── Localizable.strings │ │ ├── uk.lproj/ │ │ │ └── Localizable.strings │ │ ├── vi.lproj/ │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj/ │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj/ │ │ └── Localizable.strings │ ├── Views/ │ │ ├── AppSettings.swift │ │ ├── CombinedView.swift │ │ ├── Dashboard.swift │ │ ├── Settings.swift │ │ ├── Setup.swift │ │ ├── Support.swift │ │ └── Update.swift │ └── helpers.swift ├── Stats.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ ├── SMC.xcscheme │ ├── Stats.xcscheme │ └── WidgetsExtension.xcscheme ├── Tests/ │ ├── Info.plist │ └── RAM.swift ├── Widgets/ │ ├── Supporting Files/ │ │ ├── Assets.xcassets/ │ │ │ ├── AccentColor.colorset/ │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── WidgetBackground.colorset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── Widgets.entitlements │ ├── UnitedWidget.swift │ └── widgets.swift └── exportOptions.plist