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
32 lines
534 B
QML
32 lines
534 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell.Io
|
|
import Quickshell.Services.Pipewire
|
|
import qs.Daemons
|
|
import qs.Modules
|
|
import qs.Config
|
|
import qs.Components
|
|
|
|
MaterialIcon {
|
|
id: speaker
|
|
|
|
animate: true
|
|
color: Audio.muted ? DynamicColors.palette.m3error : DynamicColors.palette.m3onSurface
|
|
fill: 1
|
|
font.pointSize: Appearance.font.size.larger
|
|
text: Audio.muted ? "volume_off" : "volume_up"
|
|
|
|
Behavior on Layout.maximumWidth {
|
|
Anim {
|
|
}
|
|
}
|
|
Behavior on opacity {
|
|
Anim {
|
|
}
|
|
}
|
|
Behavior on scale {
|
|
Anim {
|
|
}
|
|
}
|
|
}
|