X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=xsetbg_conf.py;fp=xsetbg_conf.py;h=a77d678b3e3ff139fcfb8cc2db9134621eb922b5;hb=a337e26c169baecb75197b50db5fd734c39f6187;hp=0000000000000000000000000000000000000000;hpb=2cddf90c4a03684107f52543af1dbfda2a42d794;p=xsetbg.git diff --git a/xsetbg_conf.py b/xsetbg_conf.py new file mode 100755 index 0000000..a77d678 --- /dev/null +++ b/xsetbg_conf.py @@ -0,0 +1,18 @@ +#! /usr/bin/env python +"""XSetBg config + +""" + +__author__ = "Oleg Broytman " +__copyright__ = "Copyright (C) 2014 PhiloSoft Design" +__license__ = "GNU GPL" + +__all__ = ['xsetbg_conf'] + +import os +from ConfigParser import SafeConfigParser + +xsetbg_dir = os.path.dirname(os.path.abspath(__file__)) + +xsetbg_conf = SafeConfigParser() +xsetbg_conf.read(os.path.join(xsetbg_dir, 'xsetbg.conf'))