Warning, /plasma/plasma-mobile/quicksettings/powermenu/package/contents/ui/main.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *   SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
0003  *
0004  *   SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 import org.kde.plasma.quicksetting.powermenu 1.0 as PowerMenu
0008 import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS
0009 
0010 QS.QuickSetting {
0011     text: i18n("Shut Down")
0012     icon: "system-shutdown-symbolic"
0013     status: i18n("Open power menu")
0014     enabled: false
0015     
0016     function toggle() {
0017         PowerMenu.PowerMenuUtil.openShutdownScreen();
0018     }
0019 }
0020