{"id":34570567,"url":"https://github.com/linuxdeepin/dde-control-center","last_synced_at":"2026-04-01T17:05:09.952Z","repository":{"id":11657915,"uuid":"14165745","full_name":"linuxdeepin/dde-control-center","owner":"linuxdeepin","description":"Control panel of Deepin Desktop Environment.","archived":false,"fork":false,"pushed_at":"2026-02-27T09:11:17.000Z","size":429393,"stargazers_count":187,"open_issues_count":5,"forks_count":144,"subscribers_count":16,"default_branch":"master","last_synced_at":"2026-02-27T15:18:02.519Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://linuxdeepin.github.io/dde-control-center/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxdeepin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2013-11-06T07:23:41.000Z","updated_at":"2026-02-27T09:10:43.000Z","dependencies_parsed_at":"2023-01-14T12:15:24.115Z","dependency_job_id":"f4d926b9-46ed-4aa1-89c7-ef45fbb29148","html_url":"https://github.com/linuxdeepin/dde-control-center","commit_stats":null,"previous_names":[],"tags_count":786,"template":false,"template_full_name":null,"purl":"pkg:github/linuxdeepin/dde-control-center","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeepin%2Fdde-control-center","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeepin%2Fdde-control-center/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeepin%2Fdde-control-center/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeepin%2Fdde-control-center/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxdeepin","download_url":"https://codeload.github.com/linuxdeepin/dde-control-center/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeepin%2Fdde-control-center/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29992287,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-24T09:33:59.705Z","updated_at":"2026-03-02T04:14:22.030Z","avatar_url":"https://github.com/linuxdeepin.png","language":"C++","readme":"## DDE Control Center\n\nDDE Control Center is the control panel of Deepin Desktop Environment.\n\n## Dependencies\n\nCheck `debian/control` for build-time and runtime dependencies, or use `cmake` to check the missing required dependencies.\n\n## Installation\n\n### Build from source code\n\n1. Make sure you have installed all dependencies.\n\n2. Build:\n```\n$ cd dde-control-center\n$ mkdir Build\n$ cd Build\n$ cmake ..\n$ make\n```\n\n3. Install:\n```\n$ sudo make install\n```\n\nThe executable binary file could be found at `/usr/bin/dde-control-center` after the installation is finished, and plugins will be placed into `${CMAKE_INSTALL_FULL_LIBDIR}/dde-control-center/modules/`, usually is `/usr/lib/dde-control-center/modules/`.\n\nA `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command:\n\n```shell\n$ sudo apt build-dep . # install build dependencies\n$ dpkg-buildpackage -uc -us -nc -b # build binary package(s)\n```\n\n## Usage\n\nExecute `dde-control-center -h` to get more details.\n\nNote: `--spec` can be used to debug plugins. The passed in value is the path where the so of plugin is in.\n\n## Getting help\n\nYou can press `F1` to start [deepin-manual](https://github.com/linuxdeepin/deepin-manual) when you focus on DDE Control Center window.\n\nYou may also find these channels useful if you encounter any other issues:\n\n* [Telegram group](https://deepin.org/to/tg)\n* [Matrix](https://matrix.to/#/#deepin-community:matrix.org)\n* [IRC (libera.chat)](https://web.libera.chat/#deepin-community)\n* [Forum](https://bbs.deepin.org)\n* [WiKi](https://wiki.deepin.org/)\n\n## Develop Plugins with cmake\n\n```cmake\n\n# just show the target link way\n\nfind_package(DdeControlCenter REQUIRED)\nfind_package(Dtk COMPONENTS Core Widget REQUIRED)\nfind_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)\n\nadd_library(dcc_exampleplugin SHARED\n    plugin.h\n    plugin.cpp\n)\n\ntarget_link_libraries(dcc_exampleplugin PRIVATE\n    Dde::DCCWidget\n    Dde::DCCInterface\n    Dtk::Core\n    Dtk::Widget\n    Qt5::Core\n    Qt5::Gui\n    Qt5::Widgets\n)\n\n```\n\n## Getting involved\n\nWe encourage you to report issues and contribute changes\n\n* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)\n* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers) (中文)\n\n## License\n\nDDE Control Center is licensed under [GPL-3.0-or-later](LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxdeepin%2Fdde-control-center","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxdeepin%2Fdde-control-center","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxdeepin%2Fdde-control-center/lists"}