nova-shell/modules/OsdState.qml
2026-04-12 15:24:08 +02:00

20 lines
383 B
QML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

pragma Singleton
import QtQuick
QtObject {
property bool visible: false
property real value: 0 // 0.01.0
property string icon: ""
property Timer _timer: Timer {
interval: 1500
onTriggered: visible = false
}
function show(val, ico) {
value = val;
icon = ico;
visible = true;
_timer.restart();
}
}