From 7c54d6dd6552136e79b241929cac4e07f64fa919 Mon Sep 17 00:00:00 2001 From: Xjph Date: Wed, 2 Mar 2022 17:09:35 -0330 Subject: [PATCH] On linux try Steam/Proton default journal location --- ObservatoryCore/LogMonitor.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ObservatoryCore/LogMonitor.cs b/ObservatoryCore/LogMonitor.cs index 73daf38..7a519d8 100644 --- a/ObservatoryCore/LogMonitor.cs +++ b/ObservatoryCore/LogMonitor.cs @@ -226,19 +226,18 @@ namespace Observatory logDirectory = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory); } } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) + else if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) || RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { - string defaultJournalPath = GetSavedGamesPath() + @"\Frontier Developments\Elite Dangerous"; + string defaultJournalPath = RuntimeInformation.IsOSPlatform(OSPlatform.Linux) + ? Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + + "/.steam/debian-installation/steamapps/compatdata/359320/pfx/drive_c/users/steamuser/Saved Games/Frontier Developments/Elite Dangerous" + : GetSavedGamesPath() + @"\Frontier Developments\Elite Dangerous"; logDirectory = Directory.Exists(defaultJournalPath) ? new DirectoryInfo(defaultJournalPath) : new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory); } - else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) - { - logDirectory = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory); - } else { throw new NotImplementedException("Current OS Platform Not Supported.");