файловый менеджер
Find a file
2026-04-24 13:47:18 +03:00
.github/workflows Add packaging and release automation 2026-04-23 00:21:36 +03:00
cmd/vcom Refine mouse interactions and info pane UX 2026-04-22 22:50:30 +03:00
docs Update README structure and add screenshot 2026-04-24 13:47:18 +03:00
internal Simplify modal hints and remove action buttons 2026-04-24 13:24:57 +03:00
scripts Add packaging and release automation 2026-04-23 00:21:36 +03:00
vendor Add packaging and release automation 2026-04-23 00:21:36 +03:00
.codex Initial vcom TUI prototype 2026-04-22 22:10:50 +03:00
.gitignore Add packaging and release automation 2026-04-23 00:21:36 +03:00
flake.lock Add flake lock file 2026-04-23 00:37:11 +03:00
flake.nix Add packaging and release automation 2026-04-23 00:21:36 +03:00
go.mod Add syntax highlighting to text previews 2026-04-22 23:35:42 +03:00
go.sum Add syntax highlighting to text previews 2026-04-22 23:35:42 +03:00
LICENSE Initial commit 2026-04-22 22:09:10 +03:00
PKGBUILD Add packaging and release automation 2026-04-23 00:21:36 +03:00
README.md Update README structure and add screenshot 2026-04-24 13:47:18 +03:00
vcom.toml Initial vcom TUI prototype 2026-04-22 22:10:50 +03:00

vcom

vcom is a two-pane terminal file manager with a fast built-in info/preview panel for the active selection.

Why vcom

  • Two-pane workflow focused on keyboard speed
  • Built-in preview/info pane for the active selection
  • Asynchronous copy/move with progress and background mode
  • Theme support and configurable layout/columns

Preview mode (F9 / i) temporarily replaces the inactive pane and shows:

  • directory listing preview
  • text file preview with syntax highlighting
  • image metadata (format + dimensions)
  • safe fallback for binary files

Screenshot

vcom screenshot

Build and run

Run directly:

go run ./cmd/vcom

Build local binary:

go build -o vcom ./cmd/vcom

Installation

NixOS / Nix

Run directly from the flake:

nix run github:vrubelroman/vcom?ref=v0.1.2

Install into user profile:

nix profile add github:vrubelroman/vcom?ref=v0.1.2

Debian / Ubuntu

Download the release .deb for v0.1.2, then install:

sudo apt install ./vcom_0.1.2_amd64.deb

Arch Linux

A PKGBUILD is included in the repository:

makepkg -si

Configuration

Optional config lookup order:

  1. -config /path/to/vcom.toml
  2. ./vcom.toml
  3. ./config/vcom.toml
  4. $XDG_CONFIG_HOME/vcom/vcom.toml
  5. ~/.config/vcom/vcom.toml

Reference config: vcom.toml

Themes

Built-in themes:

  • catppuccin-mocha (default)
  • tokyo-night
  • gruvbox-dark
  • nord-frost

Releases

Pushing a tag like v0.1.2 triggers GitHub Actions release workflow (.github/workflows/release.yml) which:

  • runs tests
  • vendors Go modules
  • builds release binary
  • builds Debian package
  • publishes release assets

Release artifacts:

  • vcom-v0.1.2-x86_64-unknown-linux-gnu.tar.gz
  • vcom_0.1.2_amd64.deb
  • vcom-v0.1.2-checksums.txt

Notes

  • File creation time depends on filesystem/OS support; unavailable values are shown as n/a.
  • Inline image rendering is intentionally disabled for now due to terminal compatibility differences.

Architecture notes: docs/architecture.md