aboutsummaryrefslogtreecommitdiff
path: root/quickshell/items/Waves.qml
diff options
context:
space:
mode:
Diffstat (limited to 'quickshell/items/Waves.qml')
-rw-r--r--quickshell/items/Waves.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/quickshell/items/Waves.qml b/quickshell/items/Waves.qml
new file mode 100644
index 0000000..05e42e2
--- /dev/null
+++ b/quickshell/items/Waves.qml
@@ -0,0 +1,23 @@
+import QtQuick
+import QtQuick.Layouts
+
+RowLayout {
+ spacing: 0
+ Text {
+ text: " Waves:"
+ color: shellRoot.white
+ font {
+ family: shellRoot.fontFamily
+ pixelSize: shellRoot.fontSize
+ }
+ }
+ Text {
+ text: volume
+ color: shellRoot.green
+ font {
+ family: shellRoot.fontFamily
+ pixelSize: shellRoot.fontSize
+ bold: true
+ }
+ }
+}