mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 22:54:16 +02:00
Migrate first module slice to bearhub namespace with compatibility wrappers
This commit is contained in:
@@ -1,22 +1 @@
|
||||
import argparse
|
||||
from argparse import Namespace
|
||||
|
||||
from bauh import __app_name__, __version__
|
||||
|
||||
|
||||
def read() -> Namespace:
|
||||
parser = argparse.ArgumentParser(prog=__app_name__, description="GUI for Linux software management")
|
||||
parser.add_argument('-v', '--version', action='version', version='%(prog)s {}'.format(__version__))
|
||||
parser.add_argument('--logs', action="store_true", help='It activates {} logs.'.format(__app_name__))
|
||||
parser.add_argument('--offline', action="store_true", help='It assumes the internet connection is off')
|
||||
parser.add_argument('--suggestions', action="store_true",
|
||||
help='It forces loading software suggestions after the initialization process')
|
||||
|
||||
exclusive_args = parser.add_mutually_exclusive_group()
|
||||
exclusive_args.add_argument('--tray', action="store_true", help='If {} should be attached to the system tray.'.format(__app_name__))
|
||||
exclusive_args.add_argument('--settings', action="store_true", help="Display only the settings panel")
|
||||
exclusive_args.add_argument('--reset', action="store_true", help='Remove all configuration and cache files')
|
||||
|
||||
parser.add_argument_group(exclusive_args)
|
||||
|
||||
return parser.parse_args()
|
||||
from bearhub.app_args import * # noqa: F401,F403
|
||||
|
||||
Reference in New Issue
Block a user