my over complex system configurations
4

Configure Feed

Select the types of activity you want to include in your feed.

isabel/quickshell: drop kirigami

isabel (Jul 3, 2026, 9:21 AM +0100) b33db547 6218b81f

+7 -7
-1
home/isabel/quickshell.nix
··· 7 7 pkgs.quickshell 8 8 pkgs.kdePackages.qtimageformats 9 9 pkgs.adwaita-icon-theme 10 - pkgs.kdePackages.kirigami.unwrapped 11 10 ]; 12 11 meta.mainProgram = pkgs.quickshell.meta.mainProgram; 13 12 };
+7 -6
home/isabel/quickshell/components/MyIcon.qml
··· 1 - import org.kde.kirigami 2 1 import QtQuick 3 2 import QtQuick.Effects 4 3 import Quickshell ··· 15 14 implicitWidth: size 16 15 implicitHeight: size 17 16 18 - Icon { 17 + IconImage { 19 18 id: iconSource 20 19 anchors.fill: parent 21 20 source: Quickshell.iconPath(root.icon) 22 21 23 - isMask: true 24 - // FIXME: 25 - // color: Settings.colors.foreground 26 - color: invert ? "#1e1e2e" : "#cdd6f4" 22 + layer.enabled: true 23 + layer.effect: MultiEffect { 24 + brightness: 1.0 25 + colorization: 1.0 26 + colorizationColor: root.invert ? "#1e1e2e" : "#cdd6f4" 27 + } 27 28 } 28 29 }