summarylogtreecommitdiffstats
path: root/config_dir.patch
diff options
context:
space:
mode:
Diffstat (limited to 'config_dir.patch')
-rw-r--r--config_dir.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/config_dir.patch b/config_dir.patch
new file mode 100644
index 000000000000..269bb11e633c
--- /dev/null
+++ b/config_dir.patch
@@ -0,0 +1,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;