Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kde/plasma-settings
Settings application for Plasma Mobile
https://github.com/kde/plasma-settings
Last synced: 4 days ago
JSON representation
Settings application for Plasma Mobile
- Host: GitHub
- URL: https://github.com/kde/plasma-settings
- Owner: KDE
- Created: 2015-09-18T14:37:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T01:51:23.000Z (about 2 months ago)
- Last Synced: 2024-09-16T15:18:09.379Z (about 2 months ago)
- Language: QML
- Homepage: https://invent.kde.org/plasma-mobile/plasma-settings
- Size: 3.9 MB
- Stars: 19
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSES/BSD-3-Clause.txt
Awesome Lists containing this project
README
# Plasma Settings
Settings application for Plasma Mobile.
It only supports QML based KCMs.
## Build and run from source
This project uses `cmake` to find the dependencies and build the project.
```sh
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=${PWD}/install
cmake --build build --target install -j4
```Defining the installation prefix (with `CMAKE_INSTALL_PREFIX`)
generates a file in the build folder (`build/prefix.sh`) with
environment variables for `plasma-settings` to find the freshly built modules.To run `plasma-settings` first source the environment variables and then start the binary.
```sh
source build/prefix.sh
./install/bin/plasma-settings
```