diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-05-20 20:01:21 +0200 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-05-20 20:01:21 +0200 |
commit | 87a5b11d7598fc1e5239e11972c5e03a38bbb672 (patch) | |
tree | cb14cf8d0ce50cac3bd909183f86710e6fa74056 /src/utilities/paths.vala | |
parent | 5cf585bfd897084175f1b8f8f0d8c1c27614f288 (diff) |
Imported Upstream version 0.5.3upstream/0.5.3
Diffstat (limited to 'src/utilities/paths.vala')
-rw-r--r-- | src/utilities/paths.vala | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/utilities/paths.vala b/src/utilities/paths.vala index bc3e9b1..fe8897b 100644 --- a/src/utilities/paths.vala +++ b/src/utilities/paths.vala @@ -25,6 +25,13 @@ namespace GnomePie { public class Paths : GLib.Object { ///////////////////////////////////////////////////////////////////// + /// The config directory, + /// usually ~/.config/gnome-pie/. + ///////////////////////////////////////////////////////////////////// + + public static string config_directory { get; private set; default=""; } + + ///////////////////////////////////////////////////////////////////// /// The log file, /// usually ~/.config/gnome-pie/gnome-pie.log. ///////////////////////////////////////////////////////////////////// @@ -171,6 +178,8 @@ public class Paths : GLib.Object { } } + config_directory = config_dir.get_path(); + // create local themes directory if neccasary var themes_dir = config_dir.get_child("themes"); if(!themes_dir.query_exists()) { |