2025-06-26 20:46:50 +02:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import Quickshell
|
|
|
|
import QtQuick
|
|
|
|
|
|
|
|
Singleton {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
readonly property QtObject bar: QtObject {
|
|
|
|
readonly property int width: 50
|
|
|
|
readonly property var colors: QtObject {
|
|
|
|
readonly property color bar: "#1e1e2e"
|
|
|
|
readonly property color barOutline: "#50ffffff"
|
|
|
|
readonly property color widget: "#25ceffff"
|
|
|
|
readonly property color widgetActive: "#80ceffff"
|
|
|
|
readonly property color widgetOutline: "#40ffffff"
|
|
|
|
readonly property color widgetOutlineSeparate: "#20ffffff"
|
|
|
|
readonly property color separator: "#60ffffff"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
readonly property QtObject border: QtObject {
|
2025-07-13 22:51:22 +02:00
|
|
|
readonly property int thickness: 0
|
2025-06-26 20:46:50 +02:00
|
|
|
readonly property color color: "#1e1e2e"
|
2025-07-13 22:51:22 +02:00
|
|
|
readonly property int rounding: 0
|
2025-06-26 20:46:50 +02:00
|
|
|
}
|
|
|
|
|
2025-06-29 16:57:56 +02:00
|
|
|
readonly property QtObject volumeslider: QtObject {
|
|
|
|
readonly property int width: 50
|
|
|
|
}
|
|
|
|
|
2025-06-26 20:46:50 +02:00
|
|
|
}
|