feat: Add desktop notification support with notify-py package

This commit is contained in:
Paul Gauthier (aider) 2025-03-06 11:45:37 -08:00
parent 813de04596
commit 38e8d27416
2 changed files with 26 additions and 2 deletions

View file

@ -795,6 +795,12 @@ def get_parser(default_config_files, git_root):
default=default_env_file(git_root),
help="Specify the .env file to load (default: .env in git root)",
)
group.add_argument(
"--notification",
choices=["bell", "desktop", "both", "none"],
default="bell",
help="Notification method when LLM completes (default: bell)",
)
group.add_argument(
"--suggest-shell-commands",
action=argparse.BooleanOptionalAction,