A lightweight macOS floating app that keeps your current task visible at all times.
Trigger a global shortcut to display what you're working on right now. The bubble is click-through by default, so it never gets in your way.
╔══════════════════════╗
║ Pinned to top-left ║
║ ┌──────────────┐ ║
║ │ Design review │ ║
║ └──────────────┘ ║
║ (click-through) ║
╚══════════════════════╝
Visit senri1101.github.io/notch-now and click the download button. Drag notch-now.app into your Applications folder.
Note: The app is not code-signed or notarized. macOS will show a "damaged" error on first launch. Remove the quarantine attribute with Terminal, then open normally:
xattr -cr ~/Downloads/notch-now.app
| Action | Effect |
|---|---|
⌥ ⌘ Space (once) |
Briefly highlight the bubble |
⌥ ⌘ Space (double-tap) |
Enter edit mode |
Enter |
Save and close |
Escape |
Cancel edit |
- Text is capped at 20 characters
- Displays "Now" when empty
- Text is persisted to
localStorageautomatically
- Node.js
- Rust
- Tauri prerequisites (macOS: Xcode Command Line Tools)
npm installnpm run tauri devnpm run tauri build- E1: Code Signing & Notarization
The app is currently unsigned; macOS Gatekeeper will show a warning on first launch.
After joining the Apple Developer Program, configure
bundle.macOS.signingIdentityandbundle.macOS.notarizeintauri.conf.json. See: Tauri - Sign macOS apps
- Tauri 2 — Rust-based desktop app framework
- TypeScript + Vite — frontend
- Rust — backend (global shortcut, window management)