Files
z-bar-qt/Config/BarConfig.qml
T
zach 439a14d29e
C++ / fmt (pull_request) Successful in 5s
JS/TS / fmt (pull_request) Successful in 20s
JS/TS / lint (pull_request) Successful in 26s
Python / fmt (pull_request) Successful in 34s
Python / lint (pull_request) Successful in 32s
Python / test (pull_request) Successful in 59s
Python / typecheck (pull_request) Failing after 1m2s
C++ / build (pull_request) Successful in 1m50s
Rust / fmt (pull_request) Successful in 46s
Rust / build (pull_request) Successful in 1m40s
Python / buildcheck (pull_request) Successful in 2m27s
Rust / clippy (pull_request) Successful in 2m5s
C++ / clang-tidy (pull_request) Successful in 5m56s
Initial commit implementing reveal on hover in fullscreen
2026-08-12 01:35:23 +02:00

107 lines
1.5 KiB
QML

import Quickshell.Io
JsonObject {
property bool autoHide: false
property int border: 8
property list<var> entries: [
{
id: "workspaces",
enabled: true
},
{
id: "media",
enabled: true
},
{
id: "resources",
enabled: true
},
{
id: "updates",
enabled: true
},
{
id: "spacer",
enabled: true
},
{
id: "activeWindow",
enabled: true
},
{
id: "spacer",
enabled: true
},
{
id: "hyprsunset",
enabled: true
},
{
id: "tray",
enabled: true
},
{
id: "statusIcons",
enabled: true
},
{
id: "network",
enabled: false
},
{
id: "clock",
enabled: true
},
{
id: "notifBell",
enabled: true
},
]
property bool fullscreenReveal: true
property int height: 34
property bool hideWhenNotif: false
property Popouts popouts: Popouts {
}
property int revealDelay: 300
property int rounding: 8
property int smoothing: 32
property Tray tray: Tray {
}
component Popouts: JsonObject {
property bool statusIcons: true
property bool tray: true
}
component Tray: JsonObject {
property bool recolorIcons: false
property bool showOnHover: false
property list<var> statusIcons: [
{
id: "audio",
enabled: true
},
{
id: "microphone",
enabled: true
},
{
id: "bluetooth",
enabled: true
},
{
id: "network",
enabled: false
},
{
id: "wifi",
enabled: false
},
{
id: "power",
enabled: true
},
]
property int trayIconSize: 24
}
}