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/PillSlider.qml | 77 -------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 modules/system/quickshell/PillSlider.qml (limited to 'modules/system/quickshell/PillSlider.qml') diff --git a/modules/system/quickshell/PillSlider.qml b/modules/system/quickshell/PillSlider.qml deleted file mode 100644 index e24663d..0000000 --- a/modules/system/quickshell/PillSlider.qml +++ /dev/null @@ -1,77 +0,0 @@ -import QtQuick -import QtQuick.Controls -import QtQuick.Effects -import Quickshell - -Slider { - id: root - - property string icon: "" - property color colorTrack: Theme.sliderTrack - property color colorProgress: Theme.accent - property color colorHandle: "#FFFFFF" - property color iconColor: Theme.iconDefault - - implicitHeight: 24 - padding: 0 - - background: Rectangle { - width: root.width - height: root.height - radius: height / 2 - color: root.colorTrack - - clip: true - - Rectangle { - width: root.handle.x + (root.handle.width / 2) - height: parent.height - color: root.colorProgress - } - - Image { - id: iconImage - visible: root.icon !== "" - anchors.left: parent.left - anchors.leftMargin: 6 - anchors.verticalCenter: parent.verticalCenter - source: root.icon !== "" ? Quickshell.iconPath(root.icon) : "" - sourceSize: Qt.size(14, 14) - width: 14 - height: 14 - } - - MultiEffect { - source: iconImage - anchors.fill: iconImage - colorizationColor: root.iconColor - colorization: 1.0 - } - } - - handle: Item { - x: root.visualPosition * (root.availableWidth - width) - y: root.topPadding + root.availableHeight / 2 - height / 2 - - width: root.height - height: root.height - - Rectangle { - id: handleCircle - anchors.fill: parent - radius: width / 2 - color: root.colorHandle - border.width: 1 - border.color: "#1A000000" - } - - MultiEffect { - source: handleCircle - anchors.fill: handleCircle - shadowEnabled: true - shadowBlur: 1.0 - shadowColor: "#4D000000" - shadowVerticalOffset: 1 - } - } -} -- cgit v1.3.1