From 1b8de6d63024d354f75e3ddb6493fb19e6f77a88 Mon Sep 17 00:00:00 2001 From: lucy Date: Fri, 20 Feb 2026 15:43:31 +0100 Subject: [PATCH] switch color generation to wallust --- modules/bar/StatusIcons.qml | 2 +- modules/widgets/wallswitcher/WallSwitcher.qml | 2 +- reusables/CustomIcon.qml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/bar/StatusIcons.qml b/modules/bar/StatusIcons.qml index 7baa1ab..5259fe5 100644 --- a/modules/bar/StatusIcons.qml +++ b/modules/bar/StatusIcons.qml @@ -77,7 +77,7 @@ Rectangle { hoverEnabled: true onEntered: { batPopup.visible = true; - batPopup.popupText = "Volume: " + root.vol + "%"; + batPopup.popupText = "Vol " + root.vol + "%"; } onExited: { batPopup.visible = false; diff --git a/modules/widgets/wallswitcher/WallSwitcher.qml b/modules/widgets/wallswitcher/WallSwitcher.qml index 215870f..18f7448 100644 --- a/modules/widgets/wallswitcher/WallSwitcher.qml +++ b/modules/widgets/wallswitcher/WallSwitcher.qml @@ -23,7 +23,7 @@ FloatingWindow { } Process { id: wallustRunner - property string cmd: "matugen image " + Settings.config.currentWall + " --source-color-index 0" + property string cmd: "wallust run " + Settings.config.currentWall command: ["sh", "-c", cmd] } GlobalShortcut { diff --git a/reusables/CustomIcon.qml b/reusables/CustomIcon.qml index eeb4e89..e3e8eb7 100644 --- a/reusables/CustomIcon.qml +++ b/reusables/CustomIcon.qml @@ -5,16 +5,16 @@ import qs.settings Text { id: root color: Colors.onSurfaceColor - property real iconSize: 16 - property real fill: 1 + property real iconSize: 18 + property real fill: 0 renderType: Text.NativeRendering font { hintingPreference: Font.PreferNoHinting - family: "Material Symbols Outlined" + family: "Material Symbols Rounded" pixelSize: iconSize weight: Font.Normal + (Font.DemiBold - Font.Normal) * fill variableAxes: { - "FILL": fill, + "FILL": fill.toFixed(1), "opsz": iconSize } }