void is a minimalist mac utility that "voids" your display and locks your keyboard for easy monitor cleaning.
- Runs from the macOS Menu Bar.
- Implements low-level keyboard input management.
- Handles window focus structures fluidly.
- Open source, compiled locally, and privacy-focused.
Because void operates outside the Mac App Store and requires system-level hooks, macOS requires a one-time security configuration during installation.
- Navigate to the Releases tab of this repository.
- Download
void-Installer.dmg. - Open the disk image and drag the void application into your Applications folder.
Since this application is distributed directly via GitHub, macOS will state that it cannot be verified. To authorize the application manually:
- Launch void from your Applications folder. Click OK to dismiss the initial warning.
- Open System Settings from the Apple menu.
- Select Privacy & Security in the left sidebar.
- Scroll to the Security section on the right. Locate the message: "void was blocked from opening because it is not from an identified developer."
- Click Open Anyway, enter your Mac password, and confirm by clicking Open.
This exception is permanent and will not be requested on subsequent launches.
void requires Accessibility access to interact with system inputs.
- On the first successful launch, an Accessibility Access prompt will appear.
- Click Open System Settings on the dialog box.
- Locate void in the permission list and toggle the switch to ON.
- Authenticate with your Mac password to save the changes.
To compile the project from source using Xcode:
- macOS 14.0 or newer
- Xcode 15.0 or newer
- Clone the repository:
git clone https://github.com cd void - Open
void.xcodeprojin Xcode. - Under Product > Scheme > Edit Scheme, change the Build Configuration to Release.
- Press Command + B to compile the final binary.
To generate the distribution disk image using create-dmg:
create-dmg \
--volname "void Installer" \
--window-pos 200 120 \
--window-size 800 400 \
--icon-size 100 \
--icon "void.app" 200 190 \
--app-drop-link 600 190 \
"void-Installer.dmg" \
"void.app"This project is open-source software licensed under the MIT License.