PulseBar is a compact macOS menu bar utility for watching system vitals and temporarily locking input while cleaning your keyboard or display.
Keyboard Cleaner and Monitor Cleaner use macOS Accessibility permissions to intercept input safely while cleaning. If permission is missing, PulseBar prompts through System Settings and shows a user-facing status message.
PulseBar does not permanently change system keyboard settings.
The process list is sampled locally. PulseBar reads /bin/ps output for CPU and memory values, uses native process resource counters for disk activity, and asks nettop for network activity when macOS makes that data available. Temperature is system-level, so its process panel shows CPU-heavy processes as the closest useful signal.
Open PulseBar.xcodeproj in Xcode, or build from Terminal:
xcodebuild -project PulseBar.xcodeproj -scheme PulseBar -configuration Debug -derivedDataPath /private/tmp/PulseBarDerivedData build
Launch the PulseBar scheme from Xcode. The app appears as a menu bar item rather than a normal dock app window.
Use the three-dot menu or Command + , to open Settings. Use the menu item to quit PulseBar.
PulseBar/ContentView.swift - main menu bar popover UI.PulseBar/PulseBarModel.swift - app state, settings persistence, sampling timer, and process detail loading.PulseBar/SystemMonitor.swift - CPU, memory, temperature, disk, and network snapshots.PulseBar/StatusBarController.swift - menu bar item, fixed-width status rendering, and popover behavior.PulseBar/KeyboardCleaner.swift - keyboard event tap for cleaning mode.PulseBar/MonitorCleaner.swift - display sleep and restricted wake input handling.PulseBar/SettingsWindowController.swift - compact settings window.