Files
Panama/tests/quickshell/fixtures/PhoneControlsSystemSettings.qml
T

14 lines
228 B
QML

pragma Singleton
import QtQuick
QtObject {
property bool bluebubblesAvailable: true
property int launchCount: 0
function openApplication(id: string): bool {
launchCount += 1;
return false;
}
}