summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/util
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2014-04-10 16:59:07 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2014-04-10 17:16:01 -0300
commit65bbc9ac87092053a8079d4d7d88cac4df5fbc36 (patch)
tree403dfe583f7462865948861b254105f5cd69f6ab /src/leap/bitmask/util
parentc3a21a28ba3b3a8200959ec67b0447c982448941 (diff)
Add flag to start the app hidden in the tray.
Closes #4990.
Diffstat (limited to 'src/leap/bitmask/util')
-rw-r--r--src/leap/bitmask/util/leap_argparse.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/util/leap_argparse.py b/src/leap/bitmask/util/leap_argparse.py
index 88267ff8..8aacc85d 100644
--- a/src/leap/bitmask/util/leap_argparse.py
+++ b/src/leap/bitmask/util/leap_argparse.py
@@ -59,6 +59,9 @@ def build_parser():
action="store_false", dest="api_version_check",
help='Skip the api version compatibility check with '
'the provider.')
+ parser.add_argument('-H', '--start-hidden', default=False,
+ action="store_true", dest="start_hidden",
+ help='Starts the application just in the taskbar.')
# openvpn options
parser.add_argument('--openvpn-verbosity', nargs='?',