summarylogtreecommitdiffstats
path: root/config_dir.patch
diff options
context:
space:
mode:
authorChristoph Korn2015-06-09 20:46:37 +0200
committerChristoph Korn2015-06-09 20:46:37 +0200
commit159a0a2a638a5521dac33a301c8bcc721c3ca3d2 (patch)
tree2e6982dc4f9d131af5bdfa479f79ad24e2c39e81 /config_dir.patch
downloadaur-159a0a2a638a5521dac33a301c8bcc721c3ca3d2.tar.gz
Initial import
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;