This commit is contained in:
pika 2025-06-10 15:34:15 +02:00
parent 32edcff102
commit 0296117901
110 changed files with 9713 additions and 5 deletions

14
config/OsdConfig.qml Normal file
View file

@ -0,0 +1,14 @@
pragma Singleton
import Quickshell
import QtQuick
Singleton {
readonly property int hideDelay: 2000
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
readonly property int sliderWidth: 30
readonly property int sliderHeight: 150
}
}