nosignal-shell/config/BarConfig.qml
2 * r + 2 * t 82139e9c2d refactor: workspaces use inner bar height
Also simplify boxpadding
2025-04-29 12:07:44 +10:00

24 lines
603 B
QML

pragma Singleton
import Quickshell
import QtQuick
Singleton {
property bool vertical: false
readonly property Sizes sizes: Sizes {}
readonly property Workspaces workspaces: Workspaces {}
component Sizes: QtObject {
readonly property int height: 50
readonly property int innerHeight: 30
readonly property int floatingGap: 10
readonly property int floatingGapLarge: 15
}
component Workspaces: QtObject {
readonly property int shown: 10
readonly property string style: ""
readonly property bool occupiedBg: false
}
}