args: Added -g to skip using oomox.

This commit is contained in:
Dylan Araps 2018-01-10 07:34:33 +11:00
parent 5547e5fa19
commit 1e5b311d0a

View File

@ -45,6 +45,9 @@ def get_args(args):
arg.add_argument("-f", metavar="\"/path/to/colorscheme/file\"",
help="Which colorscheme file to use.")
arg.add_argument("-g", action="store_true",
help="Skip generating oomox theme.")
arg.add_argument("-n", action="store_true",
help="Skip setting the wallpaper.")
@ -143,7 +146,7 @@ def process_args(args):
if args.o:
util.disown([args.o])
if not args.e:
if not args.e and not args.g:
reload.oomox()
reload.gtk()