DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Client Background — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
C

@imcp-pro/dsh-client-background

Client Background

Replaces the dsh Web client base background with a randomly switching public Unsplash image, revealed through translucent base surfaces.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:imcp-pro/dsh-client-background#842c3fb7aa5ed57da214c00bf6084ba28711ca10
READMECompatibilityVersions
The dsh Web client with a wallpaper background

Compatibility and provenance

Client Background is published as @imcp-pro/dsh-client-background and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/1/2026

Versions

0.1.0stable
9/1/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

@imcp-pro/dsh-client-background

English | 中文

Replaces the dsh Web client base background with a randomly switching public Unsplash image, revealed through translucent base surfaces.

A standalone, installable dsh bundle for dsh --profile web — this repo is the plugin: no monorepo, no framework checkout.

  • Repo: https://github.com/imcp-pro/dsh-client-background
  • License: MIT

What it does

  • Paints a public image on <body> (cover, centered, fixed).
  • Overrides the two base-background theme tokens (--dsw-alias-bg-base, --dsw-specific-sidebar-fill) to translucent values so the image shows through the conversation, details, and sidebar surfaces.
  • Preloads every image up front so rotations hit the browser cache instead of flashing the base color.
  • Rotates to a random image every 20 seconds.

The plugin owns no Cordis service — it injects one stylesheet and uses only browser globals (document, Image, setInterval), so it works against any published dsh version that ships the base theme tokens.

Requirements

  • A dsh Web profile (dsh --profile web, a.k.a. dsh web) with the web-app bundle.
  • The target dsh version must expose the base theme tokens --dsw-alias-bg-base / --dsw-specific-sidebar-fill and toggle the body[data-ds-dark-theme] dark-mode attribute (stable facts in current releases).

Install

# from this git repo (builds on install via the `prepare` script):
dsh plugin --profile web add github:imcp-pro/dsh-client-background

# from a published npm package (ships a prebuilt lib/):
dsh plugin --profile web add @imcp-pro/dsh-client-background

# from a local checkout (build first, then link):
npm run build
dsh plugin --profile web add .

Then restart dsh web; the background appears and persists across restarts.

Customize

Tunables are fixed constants in src/client/index.ts — edit them, run npm run build, and reinstall:

ConstantDefaultMeaning
DEFAULT_IMAGES15 Unsplash URLsthe rotating image list
ROTATION_INTERVAL_MS20_000milliseconds between swaps
SURFACE_OPACITY0.55surface opacity; 1 hides the image, 0 shows it fully

Develop

npm install
npm run build   # esbuild bundles + tsc declarations → lib/
npm test        # vitest (jsdom)

Publish

npm publish    # `prepare` runs the build; ships lib/ + cordis.patch.yml

The package ships lib/ and cordis.patch.yml (the bundle patch layer that inserts the dsh.client row). It declares both dsh.bundle.patch (so dsh plugin add registers the layer) and dsh.client (so the client-modules host serves the browser half).

Notes

  • No cordis.yml config — client halves receive no config; the tunables are the constants above.
  • Instant swap, not crossfade — preloading removes the loading flash, but the image still changes in one step.
  • background-attachment: fixed is ignored on iOS Safari — the image scrolls with the page there.