From 8c3f3e04b6251c9989fde24cb32bf60f7e6890f6 Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 30 Oct 2025 16:12:34 +0100 Subject: [PATCH] fix set_extra_icons for apps with spaces --- abra.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/abra.sh b/abra.sh index 755f2d0..1309c8f 100644 --- a/abra.sh +++ b/abra.sh @@ -256,7 +256,8 @@ set_extra_icons() { import json import os for key, value in json.loads(os.environ['EXTRA_ICONS']).items(): - print(f'{key}:{value}') + slug = key.replace(' ','-') + print(f'{slug}:{value}') ") set_icons "$icon_key_values" }