nosignal-shell/config/NotifsConfig.qml
2 * r + 2 * t ae67668fc2 notifs: option to have expire timeout
Also remove scrollbar and reduce expand drag threshold
2025-05-10 21:22:40 +10:00

18 lines
457 B
QML

pragma Singleton
import Quickshell
import QtQuick
Singleton {
readonly property bool expire: false
readonly property int defaultExpireTimeout: 3000
readonly property real clearThreshold: 0.3
readonly property int expandThreshold: 20
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
readonly property int width: 400
readonly property int image: 50
readonly property int badge: 20
}
}