* [CI] chore: update flake * Dashboard perf settings save, visibility on none enabled * Dashboard heigh stutter fixed, persist current tab * restore binding * wrapper async=false * ScriptModel, centralized tabs/panes, individual toggle * fixes, missed mediaUpdateInterval, passing values --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
40 lines
1.4 KiB
QML
40 lines
1.4 KiB
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property bool enabled: true
|
|
property bool showOnHover: true
|
|
property int mediaUpdateInterval: 500
|
|
property int resourceUpdateInterval: 1000
|
|
property int dragThreshold: 50
|
|
property bool showDashboard: true
|
|
property bool showMedia: true
|
|
property bool showPerformance: true
|
|
property bool showWeather: true
|
|
property Sizes sizes: Sizes {}
|
|
property Performance performance: Performance {}
|
|
|
|
component Performance: JsonObject {
|
|
property bool showBattery: true
|
|
property bool showGpu: true
|
|
property bool showCpu: true
|
|
property bool showMemory: true
|
|
property bool showStorage: true
|
|
property bool showNetwork: true
|
|
}
|
|
|
|
component Sizes: JsonObject {
|
|
readonly property int tabIndicatorHeight: 3
|
|
readonly property int tabIndicatorSpacing: 5
|
|
readonly property int infoWidth: 200
|
|
readonly property int infoIconSize: 25
|
|
readonly property int dateTimeWidth: 110
|
|
readonly property int mediaWidth: 200
|
|
readonly property int mediaProgressSweep: 180
|
|
readonly property int mediaProgressThickness: 8
|
|
readonly property int resourceProgessThickness: 10
|
|
readonly property int weatherWidth: 250
|
|
readonly property int mediaCoverArtSize: 150
|
|
readonly property int mediaVisualiserSize: 80
|
|
readonly property int resourceSize: 200
|
|
}
|
|
}
|