https://github.com/mtacs/betterlogin
Add features to loginwindow on macOS Sonoma or newer
https://github.com/mtacs/betterlogin
macforge-plugin objective-c xcode
Last synced: 10 months ago
JSON representation
Add features to loginwindow on macOS Sonoma or newer
- Host: GitHub
- URL: https://github.com/mtacs/betterlogin
- Owner: MTACS
- License: mit
- Created: 2025-01-26T03:09:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T16:18:30.000Z (about 1 year ago)
- Last Synced: 2025-03-26T00:36:12.872Z (11 months ago)
- Topics: macforge-plugin, objective-c, xcode
- Language: Objective-C
- Homepage:
- Size: 1.02 MB
- Stars: 29
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BetterLogin
Add features to loginwindow on macOS
### Screenshots


Settings Previews

## Installation
_macOS Sonoma 14.0 or greater is required_
1. Move BetterLogin.bundle to /Library/Application Support/MacEnhance/Plugins, or double click to automatically open in MacForge
2. Move BetterLogin.app to /Applications (not required, app will work in any location)
Some versions of macOS and MacForge do not automatically inject newly installed bundles. To manually inject BetterLogin follow these steps in terminal. This may be required after every login
```
lldb -p $(pgrep -x loginwindow)
expr (void) [[NSBundle bundleWithPath:@"/Library/Application Support/MacEnhance/Plugins/BetterLogin.bundle"] load]
expr (void) [BetterLogin load]
c
```
Close terminal window and lock screen
# Building from source
Open project in Xcode and build BetterLogin scheme to build MacForge plugin, build BetterLoginApp scheme for settings application
To build via terminal run
```
xcodebuild -scheme BetterLogin CODE_SIGNING_ALLOWED="NO" CODE_SIGNING_REQUIRED="NO" CODE_SIGN_IDENTITY=""
xcodebuild -scheme BetterLoginApp CODE_SIGNING_ALLOWED="NO" CODE_SIGNING_REQUIRED="NO" CODE_SIGN_IDENTITY=""
```