From c2c695ff4555529907e8751e08c7d9ea7d2f5625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miskolczi=20Rich=C3=A1rd?= Date: Wed, 14 Jan 2026 10:30:41 +0100 Subject: [PATCH] Fixed ~/ expansion, turns out it was our shell carrying it all along --- src/ShellService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShellService.cpp b/src/ShellService.cpp index d9a9608..5c25413 100644 --- a/src/ShellService.cpp +++ b/src/ShellService.cpp @@ -27,7 +27,7 @@ std::string ShellService::getHomePath() { char* home = getenv("HOME"); if (home && *home) { - return std::string(home); + return std::string(home) + std::string("/"); } // Fallback: try to get home directory from passwd if HOME is not set