From 72b453f14c1cd3a084718a7e37888d26154223d6 Mon Sep 17 00:00:00 2001 From: Signal Date: Sun, 15 Feb 2026 19:27:40 -0500 Subject: [PATCH] Make icon paths not be (as) environment-dependent. --- theme.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme.lua b/theme.lua index 6dbe89d..41fc2c2 100644 --- a/theme.lua +++ b/theme.lua @@ -174,7 +174,7 @@ function theme.icon(name) end end - local path = os.getenv("HOME").."/eclipse-workspace/mtmenu/textures/"..name..".png" + local path = menupath.."textures/"..name..".png" return file_exists(path) and path or assets..name..".png" end