aboutsummaryrefslogtreecommitdiff
path: root/xboomx/config.py
diff options
context:
space:
mode:
authorVictor Häggqvist <[email protected]>2014-09-02 11:27:50 +0200
committerVictor Häggqvist <[email protected]>2014-09-02 11:27:50 +0200
commitbcbd5bb12b3a1f89948d21a7a9bc0f056db73f38 (patch)
treef95b967cd8dec52fadba96c85cf03a635bb272f3 /xboomx/config.py
--status
Diffstat (limited to 'xboomx/config.py')
-rw-r--r--xboomx/config.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/xboomx/config.py b/xboomx/config.py
new file mode 100644
index 0000000..a98ef03
--- /dev/null
+++ b/xboomx/config.py
@@ -0,0 +1,15 @@
+import os
+import json
+import logging
+
+
+def load_config():
+ try:
+ with open(os.getenv("HOME") + "/.xboomx/config") as config_file:
+ return json.loads('\n'.join(config_file.readlines()))
+ except:
+ logging.error("Failed to load config file")
+ return {}
+
+
+config = load_config()