C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 11s
JS/TS / lint (pull_request) Successful in 23s
Python / fmt (pull_request) Successful in 30s
Python / lint (pull_request) Successful in 32s
Python / test (pull_request) Successful in 59s
Python / typecheck (pull_request) Failing after 1m0s
Rust / fmt (pull_request) Successful in 45s
C++ / build (pull_request) Successful in 2m31s
Rust / build (pull_request) Successful in 1m49s
Rust / clippy (pull_request) Successful in 1m17s
Python / buildcheck (pull_request) Successful in 2m25s
C++ / clang-tidy (pull_request) Successful in 3m56s
33 lines
539 B
QML
33 lines
539 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell.Io
|
|
import Quickshell.Services.Pipewire
|
|
import qs.Daemons
|
|
import qs.Modules
|
|
import ZShell.Config
|
|
import qs.Components
|
|
import qs.Services
|
|
|
|
MaterialIcon {
|
|
id: speaker
|
|
|
|
animate: true
|
|
color: Audio.muted ? Colors.palette.m3error : Colors.palette.m3onSurface
|
|
fill: 1
|
|
font.pointSize: Tokens.font.size.larger
|
|
text: Audio.muted ? "volume_off" : "volume_up"
|
|
|
|
Behavior on Layout.maximumWidth {
|
|
Anim {
|
|
}
|
|
}
|
|
Behavior on opacity {
|
|
Anim {
|
|
}
|
|
}
|
|
Behavior on scale {
|
|
Anim {
|
|
}
|
|
}
|
|
}
|