2023-03-29 06:49:09 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
|
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
|
|
|
|
|
import org.kde.plasma.quicksetting.flashlight
|
|
|
|
|
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
|
|
|
|
|
import org.kde.plasma.private.mobileshell.quicksettingsplugin as QS
|
|
|
|
|
|
|
|
|
|
QS.QuickSetting {
|
|
|
|
|
text: i18n("Docked Mode")
|
2026-05-18 17:59:11 +00:00
|
|
|
icon: "preferences-desktop-display-randr-symbolic"
|
2023-03-29 06:49:09 +00:00
|
|
|
enabled: ShellSettings.Settings.convergenceModeEnabled
|
|
|
|
|
|
|
|
|
|
function toggle() {
|
|
|
|
|
ShellSettings.Settings.convergenceModeEnabled = !ShellSettings.Settings.convergenceModeEnabled;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|