summarylogtreecommitdiffstats
path: root/config_dir.patch
blob: 269bb11e633cabef0ba391e648749aa88ef97e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# change config directory to $HOME/.config/chatty
Index: chatty-0.7.1/src/chatty/Chatty.java
===================================================================
--- chatty-0.7.1.orig/src/chatty/Chatty.java
+++ chatty-0.7.1/src/chatty/Chatty.java
@@ -140,7 +140,9 @@ public class Chatty {
         }
         String dir = System.getProperty("user.home")
                 + File.separator 
-                + ".chatty" 
+                + ".config" 
+                + File.separator 
+                + "chatty" 
                 + File.separator;
         new File(dir).mkdirs();
         return dir;