Skip to content

Commit

Permalink
docs(help): add link to github in help text
Browse files Browse the repository at this point in the history
  • Loading branch information
loqusion committed May 18, 2024
1 parent 1112e2b commit cd56f82
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/hyprshade/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
@click.option("-v", "--verbose", is_flag=True, help="Enable verbose output")
@click.pass_context
def cli(ctx: click.Context, verbose: bool):
"""Improved UX for Hyprland shaders
For more detailed documentation, visit the project's GitHub page:
https://github.com/loqusion/hyprshade
"""

level = logging.DEBUG if verbose else logging.WARNING
logging.basicConfig(level=level)

Expand Down

0 comments on commit cd56f82

Please sign in to comment.