Merge pull request #764 from michalroxorpl/external_configuration_file
Add parameter to specify a configuration file
This commit is contained in:
commit
d4425039b9
1 changed files with 17 additions and 5 deletions
|
@ -147,6 +147,13 @@ class Config(util.store.Store):
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description="bumblebee-status is a modular, theme-able status line generator for the i3 window manager. https://github.com/tobi-wan-kenobi/bumblebee-status/wiki"
|
description="bumblebee-status is a modular, theme-able status line generator for the i3 window manager. https://github.com/tobi-wan-kenobi/bumblebee-status/wiki"
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-c",
|
||||||
|
"--config-file",
|
||||||
|
action="store",
|
||||||
|
default=None,
|
||||||
|
help="Specify a configuration file to use"
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-m", "--modules", nargs="+", action="append", default=[], help=MODULE_HELP
|
"-m", "--modules", nargs="+", action="append", default=[], help=MODULE_HELP
|
||||||
)
|
)
|
||||||
|
@ -203,6 +210,11 @@ class Config(util.store.Store):
|
||||||
|
|
||||||
self.__args = parser.parse_args(args)
|
self.__args = parser.parse_args(args)
|
||||||
|
|
||||||
|
if self.__args.config_file:
|
||||||
|
cfg = self.__args.config_file
|
||||||
|
cfg = os.path.expanduser(cfg)
|
||||||
|
self.load_config(cfg)
|
||||||
|
else:
|
||||||
for cfg in [
|
for cfg in [
|
||||||
"~/.bumblebee-status.conf",
|
"~/.bumblebee-status.conf",
|
||||||
"~/.config/bumblebee-status.conf",
|
"~/.config/bumblebee-status.conf",
|
||||||
|
|
Loading…
Reference in a new issue