{"id":30137685,"url":"https://github.com/omarluq/kgithub","last_synced_at":"2025-08-11T00:54:11.660Z","repository":{"id":303203658,"uuid":"1014712182","full_name":"omarluq/kgithub","owner":"omarluq","description":"Bring GitHub to your Plasma desktop.","archived":false,"fork":false,"pushed_at":"2025-07-11T02:10:01.000Z","size":5781,"stargazers_count":11,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-09T00:46:17.469Z","etag":null,"topics":["applet","git","github","kde","kde-plasma","kde-plasma-6","plasmoid"],"latest_commit_sha":null,"homepage":"https://store.kde.org/p/2300790","language":"QML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/omarluq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-06T09:06:26.000Z","updated_at":"2025-08-08T17:17:48.000Z","dependencies_parsed_at":"2025-07-06T10:47:16.779Z","dependency_job_id":null,"html_url":"https://github.com/omarluq/kgithub","commit_stats":null,"previous_names":["omarluq/kgithub"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/omarluq/kgithub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarluq%2Fkgithub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarluq%2Fkgithub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarluq%2Fkgithub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarluq%2Fkgithub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omarluq","download_url":"https://codeload.github.com/omarluq/kgithub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omarluq%2Fkgithub/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269814260,"owners_count":24479359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"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":["applet","git","github","kde","kde-plasma","kde-plasma-6","plasmoid"],"created_at":"2025-08-11T00:54:09.730Z","updated_at":"2025-08-11T00:54:11.626Z","avatar_url":"https://github.com/omarluq.png","language":"QML","readme":"# KGitHub Plasmoid\n\nBring GitHub to your Plasma desktop.\n\n![KGitHub Profile](screenshots/profile.png)\n\n![Commit Graph](screenshots/commitgraph.png)\n\n## Features\n\n- **User Profile Display** - View your GitHub profile with avatar and statistics\n- **Repository Browser** - Browse repositories with pagination and detailed information\n- **Issues Tracking** - Monitor open issues across all repositories\n- **Pull Requests** - Track open pull requests\n- **Organizations** - View organizations you belong to\n- **Starred Repositories** - Browse starred repositories\n- **Search Functionality** - Search repositories, issues, and pull requests\n- **Configurable Interface** - Show/hide tabs and customize appearance\n- **Auto-Refresh** - Configurable automatic refresh intervals\n\n## Installation\n\n### Prerequisites\n\n- KDE Plasma 6.0+\n- Qt 6.0+\n- GitHub Personal Access Token\n\n### Install from Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/omarluq/kgithub.git\ncd kgithub\n\n# Install the plasmoid\nmake install\n```\n\n### Add to Desktop/Panel\n\n1. Right-click on your desktop or panel\n2. Select \"Add Widgets...\"\n3. Search for \"KGitHub\"\n4. Drag the widget to your desired location\n\n## Configuration\n\n### GitHub Token Setup\n\n1. Go to [GitHub Personal Access Tokens](https://github.com/settings/tokens)\n2. Click \"Generate new token (classic)\"\n3. Select scopes: `repo`, `public_repo`, `read:org`\n4. Copy the generated token\n\n![General Configuration](screenshots/generalconfig.png)\n\n### Widget Configuration\n\n1. Right-click the KGitHub widget\n2. Select \"Configure KGitHub...\"\n3. Enter your GitHub Personal Access Token and username\n4. Configure refresh interval and visible tabs\n5. Customize appearance settings\n\n![Appearance Configuration](screenshots/appearanceconfig.png)\n\n## Search\n\n![Search Functionality](screenshots/search.png)\n\nThe search functionality supports both global and targeted searches:\n\n### Global Search\nType any query to search across repositories, issues, and pull requests simultaneously.\n\n### Targeted Search\nUse prefixes for specific content types:\n- `repo:` - Search repositories only\n- `issue:` - Search issues only\n- `pr:` - Search pull requests only\n\nExamples:\n- `repo:react` - Find repositories containing \"react\"\n- `issue:bug fix` - Find issues about bug fixes\n- `pr:feature` - Find pull requests about features\n\n\n## Development\n\n### Setup\n\n```bash\ngit clone https://github.com/omarluq/kgithub.git\ncd kgithub\nmake setup\n```\n\n### Code Quality\n\n```bash\nmake lint           # Run qmllint on all QML files\nmake format         # Format QML files with qmlformat\nmake clean          # Remove trailing whitespace and extra spaces\nmake pre-commit     # Run all pre-commit checks\n```\n\n### Development \u0026 Testing\n\n```bash\nmake test           # Test plasmoid with plasmoidviewer\nmake run            # Run plasmoid with plasmoidviewer (alias for test)\nmake setup          # Set up development environment with hooks\n```\n\n### Installation Management\n\n```bash\nmake install        # Install plasmoid to KDE Plasma 6\nmake update         # Update existing plasmoid installation\nmake uninstall      # Remove plasmoid from KDE Plasma 6\nmake restart-plasma # Restart Plasma Shell (useful after install/update)\n```\n\n### Packaging\n\n```bash\nmake package VERSION=1.0.0-alpha  # Create plasmoid package with version\n```\n\n### Other Commands\n\n```bash\nmake help           # Show all available commands with descriptions\n```\n\n## Privacy \u0026 Security\n\n- All data is cached locally in KDE configuration\n- GitHub tokens are stored securely in KDE's configuration system\n- Direct GitHub API communication only\n- Rate limit aware to respect GitHub's API limits\n\n## Troubleshooting\n\n**Widget shows \"Please configure GitHub token\"**\n- Enter a valid GitHub Personal Access Token in configuration\n- Verify token has required scopes: `repo`, `public_repo`, `read:org`\n- Check GitHub username is correct\n\n**Empty or outdated data**\n- Use the refresh button to update data manually\n- Check internet connection\n- Verify GitHub token hasn't expired\n\n**Performance issues**\n- Increase refresh interval in settings\n- Widget uses intelligent caching to minimize API calls\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Run tests and linting (`make lint` and `make format`)\n5. Submit a Pull Request\n\n## License\n\nMIT License - see [LICENSE](LICENSE) file for details.\n\n## Support\n\n- [Report Issues](https://github.com/omarluq/kgithub/issues)\n- [Discussions](https://github.com/omarluq/kgithub/discussions)\n- Email: omar.luqman@hey.com\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomarluq%2Fkgithub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomarluq%2Fkgithub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomarluq%2Fkgithub/lists"}