* reworked fullscreen mode as transforming shell * controlcenter configuring of toasts & notifs * fix animation on fs switch * border rounding & shadow animation * change controlcenter notifications layout * stay on WlrLayer.Overlay, use Anim * ci: update action versions * qmlformat * format take two * third time's the charm * fix: special workspace fullscreen * fix: bar width border.thickness on non-persistent behaviour * merge fix * stop layout shift on close * last few conventions sorted * linting * maximized state to fullscreen --------- Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
19 lines
564 B
QML
19 lines
564 B
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property bool expire: true
|
|
property string fullscreen: "on"
|
|
property int defaultExpireTimeout: 5000
|
|
property real clearThreshold: 0.3
|
|
property int expandThreshold: 20
|
|
property bool actionOnClick: false
|
|
property int groupPreviewNum: 3
|
|
property bool openExpanded: false // Show the notifichation in expanded state when opening
|
|
property Sizes sizes: Sizes {}
|
|
|
|
component Sizes: JsonObject {
|
|
property int width: 400
|
|
property int image: 41
|
|
property int badge: 20
|
|
}
|
|
}
|