LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

apx-pkgmanagers

Manage package manager configurations for apx subsystems

TLDR

Interactively create a new package manager configuration
$ apx pkgmanagers new
copy
Create a package manager with specific commands
$ apx pkgmanagers new --name [name] --install '[install_cmd]' --remove '[remove_cmd]' --update '[update_cmd]'
copy
List all available package manager configurations
$ apx pkgmanagers list
copy
Remove a package manager configuration
$ apx pkgmanagers rm --name [name]
copy
Display information about a specific package manager
$ apx pkgmanagers show [name]
copy

SYNOPSIS

apx pkgmanagers command [options]

DESCRIPTION

apx pkgmanagers manages package manager configurations in apx. These configurations define how packages are installed, updated, and removed within subsystems.User-created package manager configurations are stored in ~/.local/share/apx/pkgmanagers. Built-in configurations for common package managers like apt, dnf, and pacman are provided by default.

PARAMETERS

--name string

Specify the package manager name.
--install string
The install command for the package manager.
--remove string
The remove command for the package manager.
--update string
The update command for the package manager.

SUBCOMMANDS

new

Create a new package manager configuration (interactively or with flags).
list
Display all available package manager configurations.
rm
Remove a package manager configuration.
show
Display details about a specific package manager.

SEE ALSO

Copied to clipboard
Kai