From 7441f38733a2dad86087f76b7f931f92965f0aef Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Thu, 2 Mar 2023 00:22:37 +0200 Subject: [PATCH] Updated the cli menu --- slpkg/views/cli_menu.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/slpkg/views/cli_menu.py b/slpkg/views/cli_menu.py index a2a679bf..33e0aeec 100644 --- a/slpkg/views/cli_menu.py +++ b/slpkg/views/cli_menu.py @@ -23,9 +23,9 @@ class Usage(Configs): f'Usage: {self.prog_name} [{self.yellow}OPTIONS{self.endc}] [{self.cyan}COMMAND{self.endc}] [PACKAGES...]\n' f'\n slpkg [{self.cyan}COMMAND{self.endc}] [-u, update, -U, upgrade, -c, check-updates]\n' f' slpkg [{self.cyan}COMMAND{self.endc}] [-L, clean-logs, -D, clean-tmp, -g, configs]\n' - f' slpkg [{self.cyan}COMMAND{self.endc}] [-b, build, -i, install, -d, download, -R, remove] \n' - f' slpkg [{self.cyan}COMMAND{self.endc}] [-f, find, -w, view, -s, search] \n' - f' slpkg [{self.cyan}COMMAND{self.endc}] [-e, dependees, -t, tracking] \n' + f' slpkg [{self.cyan}COMMAND{self.endc}] [-b, build, -i, install, -d, download] [packages...]\n' + f' slpkg [{self.cyan}COMMAND{self.endc}] [-R, remove, -f, find, -w, view, -s, search] [packages...]\n' + f' slpkg [{self.cyan}COMMAND{self.endc}] [-e, dependees, -t, tracking] [packages...]\n' f' slpkg [{self.yellow}OPTIONS{self.endc}] [-y, --yes, -j, --jobs, -o, --resolve-off, -r, --reinstall]\n' f' slpkg [{self.yellow}OPTIONS{self.endc}] [-k, --skip-installed, -E, --full-reverse, -S, --search]\n' f' slpkg [{self.yellow}OPTIONS{self.endc}] [-n, --no-silent, -p, --pkg-version]\n' @@ -48,15 +48,15 @@ class Usage(Configs): f' {self.cyan}-g, configs{self.endc} Edit the configuration file.\n' f' {self.cyan}-L, clean-logs{self.endc} Clean dependencies log tracking.\n' f' {self.cyan}-D, clean-tmp{self.endc} Delete all the downloaded sources.\n' - f' {self.cyan}-b, build{self.endc} Build only the packages.\n' - f' {self.cyan}-i, install{self.endc} Build and install the packages.\n' - f' {self.cyan}-d, download{self.endc} Download only the scripts and sources.\n' - f' {self.cyan}-R, remove{self.endc} Remove installed packages.\n' - f' {self.cyan}-f, find{self.endc} Find installed packages.\n' - f' {self.cyan}-w, view{self.endc} View packages from the repository.\n' - f' {self.cyan}-s, search{self.endc} Search packages from the repository.\n' - f' {self.cyan}-e, dependees{self.endc} Show which packages depend.\n' - f' {self.cyan}-t, tracking{self.endc} Tracking the packages dependencies.\n' + f' {self.cyan}-b, build{self.endc} [packages...] Build only the packages.\n' + f' {self.cyan}-i, install{self.endc} [packages...] Build and install the packages.\n' + f' {self.cyan}-d, download{self.endc} [packages...] Download only the scripts and sources.\n' + f' {self.cyan}-R, remove{self.endc} [packages...] Remove installed packages.\n' + f' {self.cyan}-f, find{self.endc} [packages...] Find installed packages.\n' + f' {self.cyan}-w, view{self.endc} [packages...] View packages from the repository.\n' + f' {self.cyan}-s, search{self.endc} [packages...] Search packages from the repository.\n' + f' {self.cyan}-e, dependees{self.endc} [packages...] Show which packages depend.\n' + f' {self.cyan}-t, tracking{self.endc} [packages...] Tracking the packages dependencies.\n' f'\n{self.bold}OPTIONS:{self.endc}\n' f' {self.yellow}-y, --yes{self.endc} Answer Yes to all questions.\n' f' {self.yellow}-j, --jobs{self.endc} Set it for multicore systems.\n'