experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

cleanup(overlay): remove vestigial overlay references and rename events

+2 -2
+1 -1
app/page/page.js
··· 159 159 triggerZone.addEventListener('mouseleave', hide); 160 160 161 161 // Cmd+L: show with URL focus 162 - api.subscribe('overlay:show', () => show({ focusUrl: true }), api.scopes.WINDOW); 162 + api.subscribe('page:show-navbar', () => show({ focusUrl: true }), api.scopes.WINDOW); 163 163 164 164 // --- Nav button actions --- 165 165
+1 -1
backend/electron/ipc.ts
··· 1809 1809 if (input.type !== 'keyDown' || !input.meta) return; 1810 1810 if (input.key === 'l') { 1811 1811 // Show the page container's nav bar 1812 - publish('peek://system/', PubSubScopes.GLOBAL, 'overlay:show', { windowId: win.id }); 1812 + publish('peek://system/', PubSubScopes.GLOBAL, 'page:show-navbar', { windowId: win.id }); 1813 1813 event.preventDefault(); 1814 1814 } 1815 1815 });