An always-on, edge-docked desktop widget for instantly capturing text, links, and images. Drop anything in, drag it back out.
Built with Electron + Svelte 5 + TailwindCSS + SQLite.
| Feature | Description |
|---|---|
| Edge-docked widget | Slim strip on your screen edge โ slides open on hover |
| Capture anything | Paste (Ctrl+V) or drag-and-drop text, links, images, files |
| Drag out | Drag snippets directly into Word, browser, IDE, or any app |
| Copy out | Click to copy โ always clean plain text, no formatting artifacts |
| Search | Global hotkey Ctrl+Shift+Space to search snippets instantly |
| Daily cleanup | Auto-prompt at 5 PM to review & clear, plus a manual trigger |
| Dock anywhere | Drag the grip bar to dock left or right |
| Save permanently | Export any snippet to a file on disk |
| Always on top | Stays above all windows for instant access |
| Shortcut | Action |
|---|---|
Ctrl+V |
Paste from clipboard |
Ctrl+C |
Copy selected snippet |
Ctrl+X |
Cut selected snippet |
Ctrl+Shift+Space |
Open & focus search (global) |
Ctrl+Q |
Quit app |
Ephemeral-Dropzone-Setup-1.0.0.exegit clone https://github.com/rajmane4-boop/Ephemeral-Dropzone.git
cd Ephemeral-Dropzone
npm install
npm run dev # development
npm run build # production build
npm run package # create .exe installer
| Layer | Technology |
|---|---|
| Framework | Electron 34 |
| UI | Svelte 5 |
| Styling | TailwindCSS 4 |
| Database | SQLite (sql.js) |
| Build | electron-vite + electron-builder |
src/
โโโ main/
โ โโโ index.js # Electron main process, IPC, DB, window management
โโโ preload/
โ โโโ index.js # Context bridge API
โโโ renderer/
โโโ index.html
โโโ src/
โโโ App.svelte # Main app logic
โโโ main.js # Svelte entry point
โโโ assets/app.css # Global styles & animations
โโโ components/
โโโ SnippetCard.svelte # Individual snippet card
โโโ SnippetList.svelte # Scrollable snippet list
โโโ DropZone.svelte # Drag-and-drop target area
โโโ SearchBar.svelte # Search input
โโโ DoomsdayPrompt.svelte # Daily cleanup overlay
โโโ Toast.svelte # Toast notifications
Built with the help of Google Gemini โ AI pair programming partner for architecture, debugging, and code review.