{"id":31375980,"url":"https://github.com/abdullahguch/folderium","last_synced_at":"2026-04-21T05:33:03.308Z","repository":{"id":315251532,"uuid":"1058729157","full_name":"abdullahguch/folderium","owner":"abdullahguch","description":"A native macOS file manager with dual-pane layout, built with Swift and SwiftUI","archived":false,"fork":false,"pushed_at":"2025-09-17T15:16:01.000Z","size":1219,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-17T15:30:13.791Z","etag":null,"topics":["dual-pane","file-manager","macos","swift","swiftui"],"latest_commit_sha":null,"homepage":"https://folderium.com","language":"Swift","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/abdullahguch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-09-17T13:24:56.000Z","updated_at":"2025-09-17T15:16:04.000Z","dependencies_parsed_at":"2025-09-17T15:30:28.878Z","dependency_job_id":"066c063e-4571-474f-ab8f-b2c872a4e8bf","html_url":"https://github.com/abdullahguch/folderium","commit_stats":null,"previous_names":["abdullahguch/folderium"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/abdullahguch/folderium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahguch%2Ffolderium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahguch%2Ffolderium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahguch%2Ffolderium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahguch%2Ffolderium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abdullahguch","download_url":"https://codeload.github.com/abdullahguch/folderium/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abdullahguch%2Ffolderium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277318706,"owners_count":25798184,"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-09-28T02:00:08.834Z","response_time":79,"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":["dual-pane","file-manager","macos","swift","swiftui"],"created_at":"2025-09-28T02:53:06.011Z","updated_at":"2026-04-21T05:33:03.296Z","avatar_url":"https://github.com/abdullahguch.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Folderium\n\nFolderium is an open-source, native macOS file manager built with Swift and SwiftUI.\nIt focuses on fast local file operations with a dual-pane workflow and zero telemetry.\n\n## Highlights\n\n- Dual-pane file browsing with independent navigation per pane\n- Explorer-style familiarity mode (toggle in app settings)\n- Quick Access sidebar with favorites, recent folders, and mounted drives\n- Explorer-like navigation controls per pane (Back, Forward, Up, path bar)\n- Multi-window support (`Cmd + N` creates a new window)\n- File operations: copy, move, delete, move to Trash, create file/folder, rename\n- File conflict dialogs for copy/move/drop (`Replace`, `Keep Both`, `Skip`)\n- Keyboard convenience: `F2` rename for selected item\n- Search features: local filename search, regex search, file-content search, Spotlight search\n  - Includes token filters in pane search such as `ext:`, `type:`, `size\u003e`, `size\u003c`\n- Archive support with system tools:\n  - Create: ZIP, TAR, GZIP, BZIP2\n  - Extract/List: ZIP, TAR, GZIP, BZIP2\n  - 7Z/RAR/ISO/CAB/LZH currently return unsupported\n- Terminal integration:\n  - Open current folder directly in macOS Terminal\n- Privacy-first by design: local operations only, no analytics in the app\n\n## Requirements\n\n- macOS 14.0+\n- Xcode 15+ (for local development)\n\n## Quick Start\n\n```bash\ngit clone https://github.com/yourusername/folderium.git\ncd folderium\nopen Folderium.xcodeproj\n```\n\nThen run in Xcode with `Cmd + R`.\n\n## Build From CLI\n\n```bash\nxcodebuild -project Folderium.xcodeproj -scheme Folderium -configuration Debug build\n```\n\n## Project Scripts\n\n- Verify project/build health:\n\n  ```bash\n  ./scripts/verify_build.sh\n  ```\n\n- Build distributable DMG:\n\n  ```bash\n  ./scripts/build_dmg.sh\n  ```\n\n## Project Structure\n\n```text\nfolderium/\n├── Folderium/\n│   ├── FolderiumApp.swift\n│   ├── ContentView.swift\n│   ├── DualPaneView.swift\n│   └── Managers/\n│       ├── FileManager.swift\n│       ├── ArchiveManager.swift\n│       ├── SearchManager.swift\n│       └── TerminalManager.swift\n├── scripts/\n├── .github/workflows/build.yml\n├── README.md\n└── CONTRIBUTING.md\n```\n\n## Architecture Overview\n\n- `FolderiumApp.swift`: app entry, window behavior, command menu integration\n- `ContentView.swift`: top-level layout (dual-pane area + preview pane)\n- `DualPaneView.swift`: core file browser UI/state and pane interactions\n- `Managers/FileManager.swift`: local filesystem operations\n- `Managers/ArchiveManager.swift`: archive create/extract/list using macOS CLI tools\n- `Managers/SearchManager.swift`: local, content, and Spotlight search\n- `Managers/TerminalManager.swift`: native Terminal launch integration\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) before opening a PR.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahguch%2Ffolderium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabdullahguch%2Ffolderium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabdullahguch%2Ffolderium/lists"}