summaryrefslogtreecommitdiff
path: root/pywal
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2018-01-10 07:34:33 +1100
committerDylan Araps <dylan.araps@gmail.com>2018-01-10 07:34:33 +1100
commit1e5b311d0a9b287d0ccc2587053bd836a2636cad (patch)
treeb67a95d4b51906ce58a3fe602d502a55e41efdb3 /pywal
parent5547e5fa19824371e0398d066aa4e2e157f0d37a (diff)
args: Added -g to skip using oomox.
Diffstat (limited to 'pywal')
-rw-r--r--pywal/__main__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pywal/__main__.py b/pywal/__main__.py
index 978d5c9..5eb5e00 100644
--- a/pywal/__main__.py
+++ b/pywal/__main__.py
@@ -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()