Кнопка обновления и столбец актуального значения

This commit is contained in:
2026-06-04 19:46:35 +03:00
parent e07fc408eb
commit caac16f88b
7 changed files with 155 additions and 55 deletions

View File

@@ -36,6 +36,16 @@ public sealed class LinuxEnvironmentVariableStore : IEnvironmentVariableStore
return System.Environment.GetEnvironmentVariable(name);
}
public string? GetUserPersistedValue(string name)
{
if (LoadMergedFromDirectory().TryGetValue(name, out var value))
{
return value;
}
return null;
}
public void Set(string name, string value)
{
try