diff --git a/archmgr.py b/archmgr.py old mode 100644 new mode 100755 index e6094e9..852b008 --- a/archmgr.py +++ b/archmgr.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# PYTHON_ARGCOMPLETE_OK + import cli.args as cliargs import commands.commit as commit diff --git a/cli/args.py b/cli/args.py index 98bee98..bba75b6 100644 --- a/cli/args.py +++ b/cli/args.py @@ -26,7 +26,8 @@ def add_cli_args(): "--no-render", "-r", help="do not re-render renderables", action="store_true" ) - sp.add_parser("config", help="prints information about your config") + # TODO: Allow changing things like config path + sp.add_parser("config", help="prints information about your config and change some of them") sp.add_parser("setup", help="Do initial setup, like installing required tools")