https://github.com/linuxdeepin/dde-shell
https://github.com/linuxdeepin/dde-shell
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/linuxdeepin/dde-shell
- Owner: linuxdeepin
- License: gpl-3.0
- Created: 2023-10-18T06:14:17.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2026-01-14T06:52:20.000Z (about 1 month ago)
- Last Synced: 2026-01-14T07:08:43.341Z (about 1 month ago)
- Language: C++
- Size: 4.99 MB
- Stars: 17
- Watchers: 3
- Forks: 55
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DDE Shell
The `dde-shell` project provides a plugin system that integrates plugins developed based on this plugin system into DDE.
## Dependencies
Check `debian/control` for build-time and runtime dependencies, or use `cmake` to check the missing required dependencies.
## Building
Regular CMake building steps applies, in short:
```shell
$ cmake -Bbuild
$ cmake --build build
```
After building, a `dde-shell` binary can be found inside the build folder, you can run it
by `dde-shell -t` to start an example. And you can optionally install it by:
```shell
$ cmake --install build # only do this if you know what you are doing
```
A `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command:
```shell
$ sudo apt build-dep . # install build dependencies
$ dpkg-buildpackage -uc -us -nc -b # build binary package(s)
```
## Getting Involved
- [Code contribution via GitHub](https://github.com/linuxdeepin/dde-shell/)
- [Submit bug or suggestions to GitHub Issues or GitHub Discussions](https://github.com/linuxdeepin/developer-center/issues/new/choose)
## License
**dde-shell** is licensed under [GPL-3.0-or-later](LICENSE).