From 043b2618a39339ca1215248ada85690366e83aaf Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 16 Apr 2026 16:02:29 +0200 Subject: [PATCH] chore: some improvements towards packaging --- archmgr.py | 3 +++ cli/args.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) mode change 100644 => 100755 archmgr.py 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")