summaryrefslogtreecommitdiff
path: root/config/OsdConfig.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 20:45:34 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 20:45:34 +1000
commitfb471f1023ab4991c124d0bc432028d95d7b7300 (patch)
tree6e46278fabc8f4b584cd668703bfe28e3d78ec8d /config/OsdConfig.qml
parentappearance: better on colours (diff)
downloadcaelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.tar.gz
caelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.tar.bz2
caelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.zip
feat: audio osd
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
+ }
+}