64f5fc100e
Add a way to specify prefix and postfix strings to the full text of a widget's text. Currently, the theme does not fill those yet. see #23
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""Configuration handling
|
|
|
|
This module provides configuration information (loaded modules,
|
|
module parameters, etc.) to all other components
|
|
"""
|
|
|
|
import argparse
|
|
|
|
MODULE_HELP = ""
|
|
THEME_HELP = ""
|
|
|
|
def create_parser():
|
|
"""Create the argument parser"""
|
|
parser = argparse.ArgumentParser(description="display system data in the i3bar")
|
|
parser.add_argument("-m", "--modules", nargs="+", default=[],
|
|
help=MODULE_HELP)
|
|
parser.add_argument("-t", "--theme", default="default", help=THEME_HELP)
|
|
return parser
|
|
|
|
class Config(object):
|
|
"""Top-level configuration class
|
|
|
|
Parses commandline arguments and provides non-module
|
|
specific configuration information.
|
|
"""
|
|
def __init__(self, args=None):
|
|
parser = create_parser()
|
|
self._args = parser.parse_args(args if args else [])
|
|
|
|
def modules(self):
|
|
"""Return a list of all activated modules"""
|
|
return [{
|
|
"module": x.split(":")[0],
|
|
"name": x if not ":" in x else x.split(":")[1],
|
|
} for x in self._args.modules]
|
|
|
|
def theme(self):
|
|
"""Return the name of the selected theme"""
|
|
return self._args.theme
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|