shift-shell/quicksettings/powermenu/package/contents/ui/main.qml
2025-04-20 18:02:19 +02:00

20 lines
472 B
QML

/*
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
import org.kde.plasma.quicksetting.powermenu as PowerMenu
import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS
QS.QuickSetting {
text: i18n("Shut Down")
icon: "system-shutdown-symbolic"
status: i18n("Open power menu")
enabled: false
function toggle() {
PowerMenu.PowerMenuUtil.openShutdownScreen();
}
}