]> git.phdru.name Git - xsetbg.git/blob - xsetbg_conf.py
Fix permissions: make helper modules not-executable
[xsetbg.git] / xsetbg_conf.py
1 """XSetBg config
2
3 """
4
5 __author__ = "Oleg Broytman <phd@phdru.name>"
6 __copyright__ = "Copyright (C) 2014 PhiloSoft Design"
7 __license__ = "GNU GPL"
8
9 __all__ = ['xsetbg_conf']
10
11 import os
12 from ConfigParser import SafeConfigParser
13
14 xsetbg_dir = os.path.dirname(os.path.abspath(__file__))
15
16 xsetbg_conf = SafeConfigParser()
17 xsetbg_conf.read(os.path.join(xsetbg_dir, 'xsetbg.conf'))