From fb471f1023ab4991c124d0bc432028d95d7b7300 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 4 May 2025 20:45:34 +1000 Subject: feat: audio osd --- config/OsdConfig.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config/OsdConfig.qml (limited to 'config/OsdConfig.qml') 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 + } +} -- cgit v1.2.3-freya