From 67b7245bf96cf954d90719e800cf9618ffaa4feb Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Mon, 29 Jun 2026 21:08:42 +0200 Subject: chore: cleanup sway, quickshell --- modules/system/quickshell/MusicVisualizer.qml | 36 --------------------------- 1 file changed, 36 deletions(-) delete mode 100644 modules/system/quickshell/MusicVisualizer.qml (limited to 'modules/system/quickshell/MusicVisualizer.qml') diff --git a/modules/system/quickshell/MusicVisualizer.qml b/modules/system/quickshell/MusicVisualizer.qml deleted file mode 100644 index f0c3227..0000000 --- a/modules/system/quickshell/MusicVisualizer.qml +++ /dev/null @@ -1,36 +0,0 @@ -import QtQuick - -Row { - id: root - property bool active: false - property color color: Theme.accent - spacing: 2 - height: 16 - - Repeater { - model: 4 - delegate: Rectangle { - id: bar - width: 3 - height: root.active ? 4 + Math.random() * (root.height - 4) : 4 - radius: 1.5 - color: root.color - - Timer { - running: root.active - interval: 100 + Math.random() * 200 - repeat: true - onTriggered: { - bar.height = 4 + Math.random() * (root.height - 4); - } - } - - Behavior on height { - NumberAnimation { - duration: 150 - easing.type: Easing.OutCubic - } - } - } - } -} -- cgit v1.3.1