diff options
| -rw-r--r-- | pywal/__main__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index 069b6ce..4698851 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -55,6 +55,9 @@ def get_args(args): help="Quiet mode, don\"t print anything and \ don't display notifications.") + arg.add_argument("-r", action="store_true", + help="Deprecated: Use (cat ~/.cache/wal/sequences &) instead.") + arg.add_argument("-R", action="store_true", help="Restore previous colorscheme.") @@ -83,6 +86,10 @@ def process_args(args): print("wal", __version__) sys.exit(0) + if args.r: + print("Deprecated: Use (cat ~/.cache/wal/sequences &) instead.") + sys.exit(1) + if args.q: sys.stdout = sys.stderr = open(os.devnull, "w") |
