Args: Add -n

This commit is contained in:
Dylan Araps 2017-06-19 18:20:57 +10:00
parent 4c37388aa2
commit b2af5c914d

5
wal.py
View File

@ -48,8 +48,8 @@ def get_args():
arg.add_argument('-i', metavar='"/path/to/img.jpg"',
help='Which image or directory to use.')
# arg.add_argument('-n', action='store_true',
# help='Skip setting the wallpaper.')
arg.add_argument('-n', action='store_true',
help='Skip setting the wallpaper.')
arg.add_argument('-o', metavar='"script_name"',
help='External script to run after "wal".')
@ -400,6 +400,7 @@ def main():
colors = get_colors(image)
# Set the wallpaper.
if not args.n:
set_wallpaper(image)
# Set the colors.