Skip to content

Commit

Permalink
improve defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
PH111P committed Apr 10, 2018
1 parent 7a8d15c commit 81d50e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions powerline/commands/lemonbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_argparser(ArgumentParser=argparse.ArgumentParser):
help='Don\'t Subscribe for i3 events.'
)
parser.add_argument(
'--use_defaults', action='store_true',
'--use_defaults', '-d', action='store_true',
help='Do also supply the bar with the default extra arguments.'
)
parser.add_argument(
Expand All @@ -30,11 +30,11 @@ def get_argparser(ArgumentParser=argparse.ArgumentParser):
help='Don\'t redirect lemonbar output to /bin/sh'
)
parser.add_argument(
'--alt_output', action='store_true',
'--alt_output', '-o', action='store_true',
help='Use alternative output detection'
)
parser.add_argument(
'--height', default='16',
'--height', '-H', default='16',
metavar='PIXELS', help='Bar height. Defaults to 16.'
)
parser.add_argument(
Expand Down

0 comments on commit 81d50e7

Please sign in to comment.