From 88e56c4c47c8a84bc8c3ce1e3a1c81be472a8c32 Mon Sep 17 00:00:00 2001 From: tobi-wan-kenobi Date: Thu, 30 Apr 2020 12:52:09 +0200 Subject: [PATCH] [core] Add '-d' as shorthand for '--debug' see #606 --- core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.py b/core/config.py index 5e2a177..74bb994 100644 --- a/core/config.py +++ b/core/config.py @@ -24,7 +24,7 @@ class Config(util.store.Store): help='Specify the name of an iconset to use (overrides theme default)') parser.add_argument('-a', '--autohide', nargs='+', default=[], help='Specify a list of modules to hide when not in warning/error state') - parser.add_argument('--debug', action='store_true', + parser.add_argument('-d', '--debug', action='store_true', help='Add debug fields to i3 output') self.__args = parser.parse_args(args)