Window ManagerAlejandro Cuenca Estrada// Name: Window Manager// Description: Manage open windows, move between spaces, and save/restore window states// Author: CoffiDev// GitHub: CoffiDev import "@johnlindquist/kit" interface WindowState { process: string title: string x: number y: number width: number height: number spaceId?: number} interface SavedLayout { name: string timestamp: number200 lines below • View full script000
Smart Clipboard ArchiveAlejandro Cuenca Estrada// Name: Smart Clipboard Archive// Description: Archive clipboard content with AI-powered categorization and quick retrieval// Author: CoffiDev// GitHub: CoffiDev import '@johnlindquist/kit' interface ClipboardEntry { id: string content: string type: 'text' | 'image' | 'url' category: string timestamp: string preview: string} interface GroupedEntries { [category: string]: ClipboardEntry[]} 236 lines below • View full script300