Warning, /plasma/plasma-nano/shell/contents/loader.qml is written in an unsupported language. File is not indexed.

0001 /*   vim:set foldmethod=marker:
0002  *
0003  *   SPDX-FileCopyrightText: 2013 Ivan Cukic <ivan.cukic(at)kde.org>
0004  *
0005  *   SPDX-License-Identifier: GPL-2.0-or-later
0006  */
0007 
0008 import QtQuick 2
0009 
0010 Item {
0011     id: main
0012 
0013     property string shell  : "org.kde.plasma.mini"
0014     property bool willing  : true
0015     property string currentSession
0016     property int priority : 0 //currentSession == "/usr/share/xsessions/plasma-minishell" ? 0 : 10
0017 
0018     // This is not needed, but allows the
0019     // handler to know whether its shell is loaded
0020     property bool loaded   : false
0021 }
0022