Package the portable DSH profiles, local plugins, desktop integration, Firefox wrapper, and ownership-aware installer lifecycle. Bundle checksum-pinned OpenVSCode, editor extensions, translation assets, and cloudflared so unreliable upstream artifact downloads cannot break a clean installation.
17 lines
513 B
JavaScript
17 lines
513 B
JavaScript
/**
|
|
* dsh-sidebar-match-bg — host half.
|
|
*
|
|
* This plugin is client-only: every behavior lives in the browser half
|
|
* (exports "./client"), which injects a <style> aliasing the sidebar fill CSS
|
|
* variable to the base background. The host half exists solely so the profile
|
|
* row loads cleanly; it registers nothing.
|
|
* @module dsh-sidebar-match-bg
|
|
*/
|
|
|
|
export const name = 'dsh-sidebar-match-bg'
|
|
|
|
/** No host services required. */
|
|
export const inject = []
|
|
|
|
/** No-op host apply. */
|
|
export function apply() {}
|