/** * **skhd** - Simple hotkey daemon for macOS * * @domain `github.com/koekeishiya/skhd` * @programs `skhd` * @version `0.3.9` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/koekeishiya/skhd` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomkoekeishiyaskhd * console.log(pkg.name) // "skhd" * console.log(pkg.description) // " Simple hotkey daemon for macOS" * console.log(pkg.programs) // ["skhd"] * console.log(pkg.versions[0]) // "0.3.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/koekeishiya/skhd.md * @see https://ts-pkgx.netlify.app/usage */ export declare const skhdPackage: { /** * The display name of this package. */ name: 'skhd'; /** * The canonical domain name for this package. */ domain: 'github.com/koekeishiya/skhd'; /** * Brief description of what this package does. */ description: ' Simple hotkey daemon for macOS'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/koekeishiya/skhd/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/koekeishiya/skhd'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/koekeishiya/skhd'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/koekeishiya/skhd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/koekeishiya/skhd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['skhd']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.3.9']; aliases: readonly [] }; export type SkhdPackage = typeof skhdPackage