initial commit

This commit is contained in:
2025-09-09 12:03:05 +02:00
commit 2d5299c8fa
15 changed files with 622 additions and 0 deletions

16
bar/Volume.qml Normal file
View File

@@ -0,0 +1,16 @@
import QtQuick
import "root:singeltons"
Text {
text: `${Pipewire.volumePercent}% ${Pipewire.micMuted}`
color: "white"
MouseArea {
anchors.fill: parent
onWheel: (event) => {
Pipewire.setVolume(Pipewire.volume + (event.angleDelta.y / 120 * 0.05))
}
}
}