C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 11s
JS/TS / lint (pull_request) Successful in 23s
Python / lint (pull_request) Successful in 30s
Python / fmt (pull_request) Successful in 32s
Python / test (pull_request) Successful in 1m1s
Python / typecheck (pull_request) Failing after 52s
C++ / build (pull_request) Successful in 1m45s
Rust / fmt (pull_request) Successful in 57s
Rust / build (pull_request) Successful in 1m50s
Rust / clippy (pull_request) Successful in 1m44s
Python / buildcheck (pull_request) Successful in 2m29s
C++ / clang-tidy (pull_request) Successful in 3m31s
36 lines
808 B
QML
36 lines
808 B
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property Anim anim: Anim {
|
|
}
|
|
property Deform deform: Deform {
|
|
}
|
|
property FontStuff font: FontStuff {
|
|
}
|
|
property Transparency transparency: Transparency {
|
|
}
|
|
|
|
component Anim: JsonObject {
|
|
property real mediaGifSpeedAdjustment: 300
|
|
property real sessionGifSpeed: 0.7
|
|
}
|
|
component Deform: JsonObject {
|
|
property real scale: 1
|
|
}
|
|
component FontFamily: JsonObject {
|
|
property string clock: "Rubik"
|
|
property string material: "Material Symbols Rounded"
|
|
property string mono: "CaskaydiaCove NF"
|
|
property string sans: "Segoe UI Variable Text"
|
|
}
|
|
component FontStuff: JsonObject {
|
|
property FontFamily family: FontFamily {
|
|
}
|
|
}
|
|
component Transparency: JsonObject {
|
|
property real base: 0.85
|
|
property bool enabled: false
|
|
property real layers: 0.4
|
|
}
|
|
}
|