Warning, /plasma/plasma-welcome/src/qml/pages/SimpleByDefault.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *  SPDX-FileCopyrightText: 2021 Felipe Kinoshita <kinofhek@gmail.com>
0003  *  SPDX-FileCopyrightText: 2022 Nate Graham <nate@kde.org>
0004  *
0005  *  SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0006  */
0007 
0008 import QtQuick
0009 import QtQuick.Layouts
0010 import org.kde.kirigami as Kirigami
0011 import Qt5Compat.GraphicalEffects
0012 
0013 import org.kde.plasma.welcome
0014 
0015 GenericPage {
0016     heading: i18nc("@info:window", "Simple by Default")
0017     description: xi18nc("@info:usagetip %1 is either 'System Settings' or 'Plasma Settings', the settings app for Plasma Desktop or Plasma Mobile", "Plasma is designed to be simple and usable out of the box. Things are where you'd expect, and there is generally no need to configure anything before you can be comfortable and productive.<nl/><nl/>Should you feel the need to, you'll find what you need in the <application>%1</application> app.", application.name)
0018 
0019     ApplicationIcon {
0020         anchors.centerIn: parent
0021 
0022         application: ApplicationInfo {
0023             id: application
0024             // TODO: If Plasma Mobile, use plasma-settings
0025             desktopName: "systemsettings"
0026         }
0027 
0028         size: Kirigami.Units.gridUnit * 10
0029     }
0030 }