mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
See also: https://pointieststick.com/2023/06/14/call-to-action-easy-porting-opportunity-in-plasma/
20 lines
480 B
QML
20 lines
480 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
import org.kde.plasma.quicksetting.powermenu 1.0 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();
|
|
}
|
|
}
|
|
|