summaryrefslogtreecommitdiff
path: root/config/OsdConfig.qml
diff options
context:
space:
mode:
Diffstat (limited to 'config/OsdConfig.qml')
-rw-r--r--config/OsdConfig.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/OsdConfig.qml b/config/OsdConfig.qml
new file mode 100644
index 0000000..1bfdbd6
--- /dev/null
+++ b/config/OsdConfig.qml
@@ -0,0 +1,14 @@
+pragma Singleton
+
+import Quickshell
+import QtQuick
+
+Singleton {
+ readonly property int hideDelay: 1500
+ readonly property Sizes sizes: Sizes {}
+
+ component Sizes: QtObject {
+ readonly property int sliderWidth: 30
+ readonly property int sliderHeight: 150
+ }
+}