diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2018-02-04 16:31:00 +1100 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2018-02-04 16:31:00 +1100 |
| commit | ac2cee675153c17030875459e01913e2cb3f249e (patch) | |
| tree | de1d3342711efe8647296976fa123d947e60f642 /pywal | |
| parent | 4090ada879c20874ea63e58690903f536aba9fa3 (diff) | |
util: Remove broken notifications
Diffstat (limited to 'pywal')
| -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) |
