diff --git a/PatchworkLauncher/GUI/LaunchManager.cs b/PatchworkLauncher/GUI/LaunchManager.cs
index 9a797d9..0266309 100644
--- a/PatchworkLauncher/GUI/LaunchManager.cs
+++ b/PatchworkLauncher/GUI/LaunchManager.cs
@@ -69,6 +69,12 @@ public void Command_Open_Readme() {
Process proc = null;
try {
proc = Process.Start(_pathReadme);
+ if (proc == null) {
+ proc = Process.Start("gedit", $"\"{_pathReadme}\"");
+ }
+ if (proc == null) {
+ proc = Process.Start("kate", $"\"{_pathReadme}\"");
+ }
}
catch (Exception ex) {
lastEx = ex;
diff --git a/PatchworkLauncher/PatchworkLauncher.csproj b/PatchworkLauncher/PatchworkLauncher.csproj
index 609a8c8..afdb84f 100644
--- a/PatchworkLauncher/PatchworkLauncher.csproj
+++ b/PatchworkLauncher/PatchworkLauncher.csproj
@@ -204,7 +204,7 @@
PreserveNewest
-
+
Always
diff --git a/PatchworkLauncher/preferences.pw.xml b/PatchworkLauncher/preferences.pw.xml
index ce4bfcb..a094156 100644
--- a/PatchworkLauncher/preferences.pw.xml
+++ b/PatchworkLauncher/preferences.pw.xml
@@ -2,6 +2,6 @@
true
true
- true
+ false
Information
\ No newline at end of file
diff --git a/PatchworkLauncher/Readme.txt b/PatchworkLauncher/readme.txt
similarity index 100%
rename from PatchworkLauncher/Readme.txt
rename to PatchworkLauncher/readme.txt