/** * **btop** - Resource monitor. C++ version and continuation of bashtop and bpytop * * @domain `github.com/aristocratos/btop` * @programs `btop` * @version `1.4.5` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/aristocratos/btop` * @dependencies `linux:gnu.org/gcc/libstdcxx@14` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `linux:gnu.org/gcc@14`, `linux:llvm.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomaristocratosbtop * console.log(pkg.name) // "btop" * console.log(pkg.description) // "Resource monitor. C++ version and continuation ..." * console.log(pkg.programs) // ["btop"] * console.log(pkg.versions[0]) // "1.4.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/aristocratos/btop.md * @see https://ts-pkgx.netlify.app/usage */ export declare const btopPackage: { /** * The display name of this package. */ name: 'btop'; /** * The canonical domain name for this package. */ domain: 'github.com/aristocratos/btop'; /** * Brief description of what this package does. */ description: 'Resource monitor. C++ version and continuation of bashtop and bpytop'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/aristocratos/btop/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/aristocratos/btop'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/aristocratos/btop'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/aristocratos/btop -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/aristocratos/btop'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['btop']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:gnu.org/gcc/libstdcxx@14']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:gnu.org/gcc@14', 'linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.5', '1.4.4', '1.4.3', '1.4.2', '1.4.1', '1.4.0', '1.3.2', '1.3.1', '1.3.0']; aliases: readonly [] }; export type BtopPackage = typeof btopPackage