args: Add -s to skip sending colors

This commit is contained in:
Dylan Araps 2017-12-28 06:48:59 +11:00
parent 95b934497b
commit 6b0d4a36de

View File

@ -62,6 +62,9 @@ def get_args(args):
arg.add_argument("-R", action="store_true",
help="Restore previous colorscheme.")
arg.add_argument("-s", action="store_true",
help="Skip changing colors in terminals.")
arg.add_argument("-t", action="store_false",
help="Deprecated: Does nothing and is no longer needed.")
@ -125,6 +128,7 @@ def process_args(args):
colors_plain["colors"]["color0"] = args.b
if args.i or args.f:
if not args.s:
sequences.send(colors_plain)
if not args.n: