Lint & Format (JS/TS) / lint-format (pull_request) Successful in 16s
Python / lint-format (pull_request) Successful in 32s
Python / test (pull_request) Successful in 38s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m49s
C++ / build (pull_request) Successful in 3m5s
82 lines
1.4 KiB
QML
82 lines
1.4 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: "clock",
|
|
enabled: true
|
|
},
|
|
{
|
|
id: "notifBell",
|
|
enabled: true
|
|
},
|
|
]
|
|
property int height: 34
|
|
property bool hideWhenNotif: false
|
|
property Popouts popouts: Popouts {
|
|
}
|
|
property int rounding: 8
|
|
property int smoothing: 32
|
|
property Tray tray: Tray {
|
|
}
|
|
|
|
component Popouts: JsonObject {
|
|
property bool activeWindow: true
|
|
property bool audio: true
|
|
property bool clock: true
|
|
property bool network: true
|
|
property bool resources: true
|
|
property bool tray: true
|
|
property bool upower: true
|
|
}
|
|
component Tray: JsonObject {
|
|
property bool recolorIcons: false
|
|
property bool showAudio: true
|
|
property bool showBluetooth: false
|
|
property bool showMicrophone: true
|
|
property bool showNetwork: false
|
|
property bool showOnHover: false
|
|
property bool showPower: true
|
|
property bool showWifi: false
|
|
property int trayIconSize: 24
|
|
}
|
|
}
|