From 5a046357b8454019a555edc4d9c38240c6e8f3d1 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 09:43:40 +0100 Subject: [PATCH] quickshell: remove file:// prefix from iconPath result Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index e29bf4d..c258790 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1505,7 +1505,7 @@ in property string appIconPath: { if (appIconName === "") return ""; let p = Quickshell.iconPath(appIconName); - return p ? "file://" + p : ""; + return p || ""; } Row {