
AKS1st/dsh-cyber-particle
30Last commit Aug 15, 2026
dsh-cyber-particle DSH plugin
cyber-particle adds a dynamic particle network background to the DeepSeek Harness Web interface. Particles fly in from screen edges, move across, and connect when close. It runs on a full-screen overlay with pointer-events passthrough, so it doesn't interfere with interaction or UI colors.
How to install the dsh-cyber-particle DSH plugin
dsh plugin --profile web add github:AKS1st/dsh-cyber-particleCopying does not run this command. Review the repository and version before installing the dsh-cyber-particle DSH plugin.
dsh-cyber-particle DSH plugin data source
dsh-cyber-particle DSH plugin snapshot date: Aug 16, 2026
discovered
What the dsh-cyber-particle DSH plugin can do
- Renders a dynamic particle network background on the Web UI overlay.
- Particles enter from random screen edges, move across, and exit to new edges.
- Auto-links particles when distance is below a threshold, forming a changing mesh.
- Built-in settings page (Settings → Particle Background) for real-time adjustments.
- Adjustable parameters: particle count, radius, line thickness, link distance, speed, and colors.
- Settings persist to `$DSH_HOME/cyber-particle.json` and restore on restart.
- Text follows DSH language setting (Chinese/English).
Where the dsh-cyber-particle DSH plugin fits
- Add a visually appealing dynamic background to the DeepSeek Harness Web interface.
- Customize the particle network look to match personal preference or theme.
- Use the settings page to fine-tune performance and visual density.
- Provide a modern, tech-inspired aesthetic for the DSH web dashboard.
Who the dsh-cyber-particle DSH plugin is for
- DeepSeek Harness Web users who want a customizable animated background.
- Users who prefer a dynamic, non-intrusive visual effect on their web interface.
dsh-cyber-particle DSH plugin limitations
- Only works with the DeepSeek Harness Web profile (`--profile web`).
- Requires DSH to be installed and running; no standalone use.
- Particle colors are semi-transparent (fixed 0.9 opacity for particles, distance-based fade for lines).
- Settings are stored in a JSON file; manual editing not recommended.
dsh-cyber-particle DSH plugin: from the repository README
Quoted from the AKS1st/dsh-cyber-particle README, the upstream source of the dsh-cyber-particle DSH plugin. Copyright remains with the original authors.
为 DeepSeek Harness Web 界面提供动态粒子网络背景:灰白散点从屏幕边缘随机飞入、直线穿过界面、离开后从新的边缘再次进入;彼此距离小于阈值的粒子自动连线,形成不断变化的网状结构。 渲染在界面全屏覆盖层上,`pointer-events` 穿透,不影响鼠标/键盘交互,也不改动任何界面配色。无 npm 运行时依赖。 内置「设置 → 粒子背景」页:可实时调节粒子数量、半径、线条粗细、连线距离、移动速度,用调色板改粒子/线条颜色,一键重置为默认;调整即时生效并持久化到 `$DSH_HOME/cyber-particle.json`,重启后自动恢复。设置页文案跟随 DSH 语言设置(中文 / English)。 ## 效果预览 亮色主题:  暗色主题:  ## 安装 从 GitHub 仓库安装(纯 JS,零构建,即装即用): ```sh dsh plugin --profile web add github:AKS1st/dsh-cyber-particle dsh web # 重启 web 服务使 profile 生效 ``` 本地安装(clone 后直接指向仓库目录): ```sh git clone https://github.com/AKS1st/dsh-cyber-particle.git dsh plugin --profile web add /path/to/dsh-cyber-particle dsh web ``` ## 卸载 ```sh dsh plugin --profile web remove cyber-particle dsh web ``` ## 可调参数(设置 → 粒子背景) 效果以 2560×1440(27" 2K)为参考视口,按设备像素比和视口面积自动归一化, 在不同分辨率/缩放的屏幕上保持一致的观感(线条粗细、粒子大小、连线密度都成比例缩放)。 设置页用「少/多、小/大、细/粗、近/远、慢/快」等定性档位展示(极少/少/适中/多/极多), 不显示绝对数值,避免不同屏幕尺寸下数值歧义;下表为内部实际取值。 | 参数 | 默认值 | 范围 | 含义 | | --- | --- | --- | --- | | 粒子数量 | 52 | 10–120 | 基准数量,绘制时按 `scale²` 缩放(8–240 截断) | | 粒子半径 | 2.2 | 0.5–6 | 半径(px),按 `scale` 缩放 | | 线条粗细 | 1.2 | 0.2–4 | 连线宽度(px),按 `scale` 缩放 | | 连线距离 | 180 | 40–400 |
Read the full READMERepository license: MIT
dsh-cyber-particle DSH plugin questions
How do I install the cyber-particle plugin for DSH?
Run `dsh plugin --profile web add github:AKS1st/dsh-cyber-particle` in your terminal, then restart the web service with `dsh web`. The plugin will be active immediately. If you prefer a local installation, clone the repo and use `dsh plugin --profile web add /path/to/dsh-cyber-particle`.
Can I adjust the particle count or speed without restarting DSH?
Yes. Go to Settings → Particle Background in the DSH Web interface. You can change particle count, radius, line thickness, link distance, speed, and colors in real time. All adjustments are saved to `$DSH_HOME/cyber-particle.json` and restored on next restart.
Does the particle background affect mouse clicks or keyboard input?
No. The overlay uses `pointer-events: none` (pointer-events passthrough), so all mouse clicks and keyboard inputs pass through to the underlying interface. The background is purely visual and does not interfere with any interaction.
Will the plugin work with dark or light themes?
Yes. The plugin works with both DSH dark and light themes. The default particle and line colors are neutral gray tones that blend well with both. You can also change colors via the settings page to match your preferred theme.
How do I uninstall the cyber-particle plugin?
To uninstall, run `dsh plugin --profile web remove cyber-particle` in your terminal, then restart the web service with `dsh web`. The background will be removed immediately.