|
@@ -600,8 +600,10 @@ public class Main extends Application {
|
|
|
|
|
|
if (System.getProperty("os.name").toLowerCase().contains("windows"))
|
|
|
olipPath = System.getenv("AppData") + File.separator + "Olip" + File.separator;
|
|
|
- else
|
|
|
+ else if (System.getProperty("os.name").toLowerCase().contains("mac"))
|
|
|
olipPath = System.getProperty("user.home") + "/Library/Application Support/Olip/";
|
|
|
+ else
|
|
|
+ olipPath = System.getProperty("user.home") + "/.olip/";
|
|
|
|
|
|
|
|
|
File file = new File(olipPath + "settings.ini");
|