diff options
| author | Dylan Araps <[email protected]> | 2017-12-27 20:19:20 +1100 |
|---|---|---|
| committer | Dylan Araps <[email protected]> | 2017-12-27 20:19:20 +1100 |
| commit | ba84790b7ab9d59594162f23ed2cb81d9d03532a (patch) | |
| tree | c4315a980cb29809675d69d7fa69953b9890dcf3 | |
| parent | general: Add message about deprecation. (diff) | |
| download | pywal-ba84790b7ab9d59594162f23ed2cb81d9d03532a.tar.xz pywal-ba84790b7ab9d59594162f23ed2cb81d9d03532a.zip | |
general: Add message about deprecation.
| -rw-r--r-- | pywal/__main__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py index 4698851..ffa8cb1 100644 --- a/pywal/__main__.py +++ b/pywal/__main__.py @@ -61,6 +61,9 @@ def get_args(args): arg.add_argument("-R", action="store_true", help="Restore previous colorscheme.") + arg.add_argument("-t", action="store_false", + help="Deprecated: Does nothing and is no longer needed.") + arg.add_argument("-v", action="store_true", help="Print \"wal\" version.") |