{"id":32777974,"url":"https://github.com/guicybercode/hitotui","last_synced_at":"2026-05-13T20:33:41.457Z","repository":{"id":321816068,"uuid":"1087214029","full_name":"guicybercode/hitotui","owner":"guicybercode","description":"A beautiful, colorful terminal file manager inspired by yazi, built with Go and Bubbletea. Features dual-pane interface, vim-style navigation, file preview, and a modern TUI design.","archived":false,"fork":false,"pushed_at":"2025-10-31T16:51:18.000Z","size":2812,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-31T18:23:28.654Z","etag":null,"topics":["aesthetic","bubbletea","golang","linux","rice","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","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/guicybercode.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-31T14:49:51.000Z","updated_at":"2025-10-31T16:51:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/guicybercode/hitotui","commit_stats":null,"previous_names":["guicybercode/hitotui"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/guicybercode/hitotui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guicybercode%2Fhitotui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guicybercode%2Fhitotui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guicybercode%2Fhitotui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guicybercode%2Fhitotui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guicybercode","download_url":"https://codeload.github.com/guicybercode/hitotui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guicybercode%2Fhitotui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32999401,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["aesthetic","bubbletea","golang","linux","rice","tui"],"created_at":"2025-11-04T14:01:25.907Z","updated_at":"2026-05-13T20:33:41.452Z","avatar_url":"https://github.com/guicybercode.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## hitotui\n\n\u003cdiv align=\"center\"\u003e\n\nA beautiful, colorful terminal file manager inspired by [yazi](https://github.com/sxyazi/yazi), built with Go and [Bubbletea](https://github.com/charmbracelet/bubbletea).\n\n\u003cimg src=\"hito1.png\" width=\"400\"/\u003e\n\u003cimg src=\"hito2.png\" width=\"400\"/\u003e\n\n\n\u003c/div\u003e\n\n## Features\n\n- **Dual-pane interface**: Navigate files on the left, preview content on the right\n- **Vim-style navigation**: Use arrow keys or `j`/`k` to move up and down\n- **File preview**: View text files, directory information, and file metadata\n- **Beautiful UI**: Colorful, modern terminal interface with responsive design\n- **Hidden files toggle**: Press `.` to show/hide hidden files\n- **Keyboard shortcuts**: Intuitive key bindings for efficient file management\n\n## Installation\n\n### From Source\n\n```bash\ngit clone https://github.com/guicybercode/hitotui\ncd hitotui\ngo build -o hitotui\n./hitotui\n```\n\n### Prerequisites\n\n- Go 1.21 or later\n- A terminal emulator with color support\n\n## Usage\n\nLaunch hitotui from your terminal:\n\n```bash\n./hitotui\n```\n\nOr navigate to a specific directory:\n\n```bash\n./hitotui /path/to/directory\n```\n\n## Keyboard Shortcuts\n\n| Key | Action |\n|-----|--------|\n| `↑` / `k` | Move selection up |\n| `↓` / `j` | Move selection down |\n| `Enter` | Open directory or file |\n| `Backspace` / `h` | Go to parent directory |\n| `.` | Toggle hidden files |\n| `q` / `Ctrl+C` | Quit |\n\n## Architecture\n\n```\nhitotui/\n├── main.go                 # Application entry point\n├── internal/\n│   ├── app/                # Main Bubbletea model\n│   ├── ui/                 # UI components (layout, file list, preview)\n│   ├── fs/                 # File system operations\n│   └── actions/            # File operations (copy, move, delete)\n└── pkg/\n    └── config/             # Configuration management\n```\n\n## Technologies\n\n- **Bubbletea**: Terminal UI framework for Go\n- **Lipgloss**: Styling and layout engine\n- **Go standard library**: File system operations\n\n## Development\n\n### Building\n\n```bash\ngo build -o hitotui\n```\n\n### Running\n\n```bash\ngo run main.go\n```\n\n## Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n## License\n\nMIT License - see LICENSE file for details.\n\n## Author\n\nCreated by [Guilherme (@guicybercode)](https://github.com/guicybercode)\n\nConnect with me on [LinkedIn](https://www.linkedin.com/in/guilherme-monteiro-3653b51a7)\n\n---\n\n**하나님은 나의 빛이요, 나의 구원이시니 내가 누구를 두려워하랴.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguicybercode%2Fhitotui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguicybercode%2Fhitotui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguicybercode%2Fhitotui/lists"}