2022-02-11 05:20:47 +00:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
2025-04-18 20:08:58 +00:00
|
|
|
import org.kde.plasma.quicksetting.powermenu as PowerMenu
|
2023-03-17 02:44:36 +00:00
|
|
|
import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS
|
2022-02-11 05:20:47 +00:00
|
|
|
|
2023-03-17 02:44:36 +00:00
|
|
|
QS.QuickSetting {
|
2022-02-11 05:20:47 +00:00
|
|
|
text: i18n("Shut Down")
|
|
|
|
|
icon: "system-shutdown-symbolic"
|
|
|
|
|
status: i18n("Open power menu")
|
|
|
|
|
enabled: false
|
2024-07-27 03:47:44 +00:00
|
|
|
|
2022-02-11 05:20:47 +00:00
|
|
|
function toggle() {
|
|
|
|
|
PowerMenu.PowerMenuUtil.openShutdownScreen();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|