diff options
| -rw-r--r-- | pywal/__main__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index 867e7cb..7c0bf06 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -58,8 +58,7 @@ def get_args(args): help="External script to run after \"wal\".") arg.add_argument("-q", action="store_true", - help="Quiet mode, don\'t print anything and \ - don't display notifications.") + help="Quiet mode, don\'t print anything.") arg.add_argument("-r", action="store_true", help="'wal -r' is deprecated: Use \ @@ -121,7 +120,7 @@ def process_args(args): if args.i: image_file = image.get(args.i) - colors_plain = colors.get(image_file, light=args.l, notify=not args.q) + colors_plain = colors.get(image_file, light=args.l) if args.f: colors_plain = colors.file(args.f) |
