gitextract_8seg_0uv/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── feature_request.md │ └── question-about-aldente.md ├── AlDente/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── menubaricon.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── Main.storyboard │ ├── ContentView.swift │ ├── Helper.swift │ ├── Info.plist │ ├── PersistanceManager.swift │ └── Preview Content/ │ └── Preview Assets.xcassets/ │ └── Contents.json ├── AlDente.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm/ │ │ │ └── Package.resolved │ │ └── xcuserdata/ │ │ └── davidwernhart.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── davidwernhart.xcuserdatad/ │ ├── xcdebugger/ │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes/ │ └── xcschememanagement.plist ├── CODE_OF_CONDUCT.md ├── Common/ │ └── HelperToolProtocol.swift ├── LICENSE ├── README.md ├── SECURITY.md ├── SMJobBlessUtil.py └── com.davidwernhart.Helper/ ├── Helper-Info.plist ├── Helper-Launchd.plist ├── HelperTool.swift ├── SMC.swift └── main.swift