{"id":39385826,"url":"https://github.com/nukeop/keyed-launcher","last_synced_at":"2026-01-18T03:03:12.284Z","repository":{"id":301723531,"uuid":"1008592359","full_name":"nukeop/keyed-launcher","owner":"nukeop","description":"Like Raycast except better","archived":false,"fork":false,"pushed_at":"2025-08-03T01:00:04.000Z","size":1057,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-17T23:33:15.426Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nukeop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-25T19:34:58.000Z","updated_at":"2025-12-15T13:24:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"15b3ef11-c4ed-4685-ae6d-f70b42183ea9","html_url":"https://github.com/nukeop/keyed-launcher","commit_stats":null,"previous_names":["nukeop/keyed-launcher"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/nukeop/keyed-launcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nukeop%2Fkeyed-launcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nukeop%2Fkeyed-launcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nukeop%2Fkeyed-launcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nukeop%2Fkeyed-launcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nukeop","download_url":"https://codeload.github.com/nukeop/keyed-launcher/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nukeop%2Fkeyed-launcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28528026,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-18T03:03:12.135Z","updated_at":"2026-01-18T03:03:12.243Z","avatar_url":"https://github.com/nukeop.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Keyed Launcher\n\nApplication launcher built with Tauri (Rust + TypeScript). Runs on Windows, macOS, and Linux.\n\n**Note**: This is a monorepo structure with the main launcher application in `packages/launcher/`.\n\n## Features\n\n- Global shortcut: `Cmd+Shift+Space` (macOS) / `Ctrl+Shift+Space` (Windows/Linux)\n- System tray integration\n- Frameless, transparent window\n- Performance tracking (development builds)\n\n## Installation\n\n### Prerequisites\n\n- Node.js 18+ and pnpm (package manager)\n- Rust 1.77.2+ with Cargo\n- Platform requirements:\n  - Windows: WebView2 runtime\n  - macOS: Xcode Command Line Tools\n  - Linux: webkit2gtk-dev, build-essential\n\n### Build and Run\n\n```bash\ngit clone https://github.com/nukeop/keyed-launcher.git\ncd keyed-launcher\npnpm install\n\n# Development\npnpm tauri:dev\n\n# Production build\npnpm tauri:build\n```\n\n## Usage\n\nThe launcher runs in the background with a system tray icon.\n\n- **Show/Hide**: `Cmd+Shift+Space` (macOS) / `Ctrl+Shift+Space` (Windows/Linux)\n- **Hide**: `Escape` key or click outside the window\n- **System Tray**: Right-click for show/hide or quit\n\n## Development\n\n### Monorepo Structure\n\n```\nkeyed-launcher/\n├── packages/\n│   └── launcher/          # Main Tauri application\n│       ├── src/           # React frontend\n│       ├── src-tauri/     # Rust backend\n│       └── package.json   # Launcher dependencies\n├── package.json           # Root workspace configuration\n└── pnpm-workspace.yaml    # pnpm workspace settings\n```\n\nAll commands run from the root directory and are automatically routed to the appropriate package.\n\n### Tech Stack\n\n- Frontend: TypeScript + React + Vite + Tailwind CSS\n- Backend: Rust with Tauri framework\n- State Management: Zustand\n- Testing: Vitest + Testing Library\n\n### Commands\n\n```bash\n# Development\npnpm tauri:dev          # Start development server\npnpm dev               # Frontend only\n\n# Building\npnpm tauri:build       # Build production app\npnpm build            # Build frontend only\n\n# Testing\npnpm test             # Run tests\npnpm test:coverage    # Run tests with coverage\npnpm test:watch       # Run tests in watch mode\n\n# Linting\npnpm lint            # Check code style\npnpm lint:fix        # Fix linting issues\n```\n\n### Build Output\n\n```bash\npnpm tauri:build\n```\n\nPlatform-specific outputs in `packages/launcher/src-tauri/target/release/bundle/`:\n- Windows: `.msi` installer and `.exe` executable\n- macOS: `.dmg` installer and `.app` bundle  \n- Linux: `.deb`, `.rpm` packages and `.AppImage`\n\n## Configuration\n\n### Global Shortcut\nModify in `packages/launcher/src-tauri/src/shortcuts.rs`. Default: `CmdOrCtrl+Shift+Space`\n\n### Window Settings\nConfigure in `packages/launcher/src-tauri/tauri.conf.json`:\n- Size: 600x400 pixels\n- Frameless and transparent\n- Always on top, skip taskbar\n- Starts hidden\n\n## Contributing\n\n1. Fork the repository\n2. Clone: `git clone https://github.com/your-username/keyed-launcher.git`\n3. Install dependencies: `pnpm install`\n4. Create feature branch: `git checkout -b feature/name`\n5. Make changes and test\n6. Commit and push\n7. Open Pull Request\n\nCode style: ESLint + Prettier (TypeScript), cargo fmt + clippy (Rust)\n\n## License\n\nAGPL-3.0 License - see LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnukeop%2Fkeyed-launcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnukeop%2Fkeyed-launcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnukeop%2Fkeyed-launcher/lists"}