From f697ff67bd503f8856af78eb3ac41d7c15fa53a2 Mon Sep 17 00:00:00 2001 From: onihilist Date: Fri, 25 Apr 2025 11:10:41 +0200 Subject: [PATCH] fix: path for ThemeLoader --- Shell/Themes/ThemeLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shell/Themes/ThemeLoader.cs b/Shell/Themes/ThemeLoader.cs index 88606e4..3edbfe5 100644 --- a/Shell/Themes/ThemeLoader.cs +++ b/Shell/Themes/ThemeLoader.cs @@ -73,7 +73,7 @@ public static string[] ToStringValue(DefaultThemesEnum theme, string currentDire /// Prompt string and LS_COLORS if theme found, error message otherwise. public static string[] LoadCustomTheme(string themeName, string currentDirectory) { - string themesDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nihilist_shell", "themes"); + string themesDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".nshell", "themes"); if (!Directory.Exists(themesDirectory)) {