feat: 实现网络速度监控任务栏插件

- 添加 C++ 后端 NetworkMonitorApplet,监控网络下载/上传速度
- 添加 QML 前端 networkview.qml,显示实时速度和流量统计
- 支持多网络接口切换
- 任务栏图标显示实时速度,高速时变色
- 悬停显示速度摘要,点击显示详细信息弹窗
- 添加安装脚本 install.sh
- 添加 .gitignore 排除构建目录
This commit is contained in:
2026-07-18 10:57:23 +08:00
parent 0b3cc74bc8
commit 011a5c7e86
8 changed files with 969 additions and 29 deletions
Executable
+25
View File
@@ -0,0 +1,25 @@
#!/bin/bash
# 网络速度监控任务栏插件安装脚本
set -e
echo "Building JNetApplet..."
# 清理旧的构建目录
rm -rf build
# 配置CMake
cmake -Bbuild
# 构建
cmake --build build
echo "Installing JNetApplet (requires sudo)..."
# 安装
sudo cmake --install build
echo "Installation complete!"
echo "Please restart dde-shell to load the plugin:"
echo " systemctl --user restart dde-shell@DDE"