Write, render, and review notes directly on top of your editor. Adjust window transparency to view the code underneath, and toggle Stealth Mode to keep notes completely hidden from screen sharing (Zoom, Loom, Teams).
Drag the note overlay, slide the transparency, and activate Stealth Mode to see the magic in real time.
// CodeNotesApp.swift - Floating Notepad Setup
import SwiftUI
struct CodeNotesWindow {
var window = NSWindow()
func configureOverlay() {
// Float above standard editor spaces
window.level = .floating
window.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary]
// Transparency controls
window.alphaValue = 0.85
window.backgroundColor = NSColor.clear
}
func setStealthMode(enabled: Bool) {
// Exclude the window from screen capturing APIs
window.sharingType = enabled ? .none : .normal
}
}
A native utility designed to fit cleanly inside a developer's toolkit.
Configured using native macOS level behaviors to overlay standard editor spaces without taking up split-screen layouts.
AppKit-level window exclusion prevents the notepad window from being captured or broadcasted by presentation services.
Finetune window transparency using our menu slider, keeping background IDE code context readable underneath the notepad area.
Write notes utilizing full markdown styles. Toggle modes to view clean headers, checklist tables, and formatted block structures.
Manipulate stealth status (`⌥⌘S`), formatting preview (`⌥⌘P`), and size minimizing capsule (`⌥⌘M`) with customizable shortcuts.
Zero tracking, zero analytics, zero external servers. All text content and parameters persist locally on disk.