An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# BetterLogin

Add features to loginwindow on macOS

### Screenshots

![Screenshot 2025-02-02 at 9 16 42 PM](https://github.com/user-attachments/assets/afb91c01-04ce-4873-a884-2d3b8c34ab10)

![Screenshot 2025-02-02 at 9 19 41 PM](https://github.com/user-attachments/assets/295ad2f9-e664-4af8-a564-53c4effb2985)

Settings Previews
wallpaper
clock
date
password
other

## 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=""
```