Update On Mon Dec 30 19:34:14 CET 2024

This commit is contained in:
github-action[bot]
2024-12-30 19:34:15 +01:00
parent 8d0c8047fb
commit 24d7dba717
83 changed files with 954 additions and 310 deletions
@@ -528,17 +528,18 @@ namespace ServiceLib.ViewModels
private async Task OpenTheFileLocation()
{
var path = Utils.StartupPath();
if (Utils.IsWindows())
{
Utils.ProcessStart("Explorer", $"/select,{Utils.GetConfigPath()}");
Utils.ProcessStart(path);
}
else if (Utils.IsLinux())
{
Utils.ProcessStart("nautilus", Utils.GetConfigPath());
Utils.ProcessStart("nautilus", path);
}
else if (Utils.IsOSX())
{
Utils.ProcessStart("open", Utils.GetConfigPath());
Utils.ProcessStart("open", path);
}
}