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.

Kde Tint — DSH Plugin for DeepSeek Harness
← Plugins
K

dsh-kde-tint

Kde Tint

Tint the DSH web UI with the KDE system accent color.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:iwinoid/dsh-kde-tint#c91cb0d35cb601d46315795c313b52cab7f4728e
READMECompatibilityVersions

Compatibility and provenance

Kde Tint is published as dsh-kde-tint and currently resolves to version 0.2.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/13/2026

Versions

0.2.0stable
9/13/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Not declared
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/13/2026
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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 pluginsClient 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.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-kde-tint

Tint the DSH web UI with the KDE system accent color.

Table of Contents

  • Background
  • Install
  • Usage
    • What gets tinted
  • API
  • Maintainers
  • Contributing
  • License

Background

The DSH web UI ships a neutral theme. On a KDE desktop the user already picks an accent color in System Settings. This plugin reads that color and tints the DSH interface with it. The harness then matches the desktop.

The plugin has two halves. The host half (lib/index.js) reads ~/.config/kdeglobals and the active color-scheme file. It serves the result as JSON from the profile web server. The browser half (lib/client.js) fetches the JSON and applies the tint through the theme service. The two halves talk over plain HTTP. A static client bundle has no host bridge, so HTTP is the correct channel.

On systems without KDE configuration the plugin falls back to defaults (accent #386798, scheme KlassyDark). It never blocks startup because of a missing config file.

Install

dsh plugin --profile web add github:iwinoid/dsh-kde-tint

Local development uses a link install instead:

dsh plugin --profile web add link:/path/to/dsh-kde-tint

The package has no build step, so a git install needs no allowBuilds exception. The package ships cordis.patch.yml through dsh.bundle.patch, so the loader mounts it with no manual patch step. Restart dsh web after install.

Check the install:

dsh --profile web --dump-config | grep -A3 kde-tint

Then open the DSH web UI. The background and borders carry a tint of the KDE accent color.

Usage

The plugin needs no clicks. It loads with immediately: true and tints the UI on every page load. Uninstall (or disable) restores the stock theme. The token override is effect-scoped, so it unwinds with the plugin.

What gets tinted

The client mixes the KDE accent into the base surfaces. Light mode keeps a white base with 6–16% accent. Dark mode keeps a dark base with 6–8% accent. Brand primary uses the raw accent in both modes.

TokenLightDark
--dsw-alias-bg-basewhite + 6% accent#0a0f14 + 8% accent
--dsw-alias-bg-layer-1 / sidebar fillwhite + 8% accent#11161c + 7% accent
--dsw-alias-bg-layer-2white + 11% accent#1a2028 + 6% accent
--dsw-alias-bg-layer-3white + 14% accent#232d37
--dsw-alias-border-l1 / -l2white + 12% / 16% accent#2a323d / #303a47
--dsw-alias-brand-primaryraw accentraw accent

Text tokens stay neutral (#1a1d22 / #e6e8eb primary). Only surfaces and brand follow the accent.

API

Debug endpoint on the profile web server:

curl http://localhost:<dsh-port>/api/kde-tint/kde-colors

GET /api/kde-tint/kde-colors returns 200 with JSON:

{ "accent": "#386798", "background": "#ffffff", "scheme": "KlassyDark" }

accent comes from General.AccentColor in kdeglobals (RGB triple or #hex). scheme comes from General.ColorScheme. background comes from Colors:Window.BackgroundNormal (or Colors:View) in the scheme file. When the read fails, the response still returns 200 with the default values plus an error string. Unknown routes return 404.

Maintainers

  • iwinoid — iwinoid@outlook.com

Contributing

Bug reports and questions are welcome on the GitHub Issues page. Pull requests are accepted. The client bundle is hand-written with no build step. Keep it that way.

License

MIT © iwinoid