mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
I prefer create MR now to avoid biggest merge request. It add minimalist implementation: - First configuration of Waydroid - Stop / Start Waydroid session - Configure properties of Waydroid - Display current ip of Waydroid | Not installed | First initialization | initializing | SessionNotStarted | SessionStarting | SessionStarted | | ------ | ------ | ------ | ------ | ------ | ------ | |  |  |  |  |  |  | Linked to https://invent.kde.org/teams/plasma-mobile/issues/-/issues/307 **Note for Reviewer**: In my local environment, i need to add manually the KAuth files otherwise polkit not recognize the implementation. ``` sudo cp ~/kde/usr/share/dbus-1/system-services/org.kde.plasma.mobileshell.waydroidhelper.service /usr/share/dbus-1/system-services/ sudo cp ~/kde/usr/share/dbus-1/system.d/org.kde.plasma.mobileshell.waydroidhelper.conf /usr/share/dbus-1/system.d/ sudo cp ~/kde/usr/share/polkit-1/actions/org.kde.plasma.mobileshell.waydroidhelper.policy /usr/share/polkit-1/actions/ ```
17 lines
623 B
CMake
17 lines
623 B
CMake
# SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
|
# SPDX-FileCopyrightText: 2017-2021 Marco Martin <mart@kde.org>
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
add_subdirectory(waydroidintegrationplugin)
|
|
add_subdirectory(hapticsplugin)
|
|
add_subdirectory(mmplugin)
|
|
add_subdirectory(mobileshell)
|
|
add_subdirectory(mobileshellstate)
|
|
add_subdirectory(quicksettingsplugin)
|
|
add_subdirectory(rotationplugin)
|
|
add_subdirectory(windowplugin)
|
|
add_subdirectory(shellsettingsplugin)
|
|
add_subdirectory(wallpaperimageplugin)
|
|
add_subdirectory(dpmsplugin)
|
|
add_subdirectory(screenbrightnessplugin)
|
|
add_subdirectory(raiselockscreenplugin)
|