/** * **xinput** - Utility to configure and test X input devices * * @domain `x.org/xinput` * @programs `xinput` * @version `1.6.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install x.org/xinput` * @homepage https://gitlab.freedesktop.org/xorg/app/xinput * @dependencies `x.org/x11`, `x.org/exts`, `x.org/xi`, ... (+2 more) * @buildDependencies `x.org/protocol` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxinput * console.log(pkg.name) // "xinput" * console.log(pkg.description) // "Utility to configure and test X input devices" * console.log(pkg.programs) // ["xinput"] * console.log(pkg.versions[0]) // "1.6.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xinput.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxinputPackage: { /** * The display name of this package. */ name: 'xinput'; /** * The canonical domain name for this package. */ domain: 'x.org/xinput'; /** * Brief description of what this package does. */ description: 'Utility to configure and test X input devices'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xinput/package.yml'; homepageUrl: 'https://gitlab.freedesktop.org/xorg/app/xinput'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install x.org/xinput'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/xinput -- $SHELL -i'; launchpadInstallCommand: 'launchpad install x.org/xinput'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['xinput']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['x.org/x11', 'x.org/exts', 'x.org/xi', 'x.org/xinerama', 'x.org/xrandr']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['x.org/protocol']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.4']; aliases: readonly [] }; export type XorgxinputPackage = typeof xorgxinputPackage