Say Goodbye to Finder.Meet Marta.

— macOS Productivity

Say Goodbye to Finder.
Meet Marta.

Why the dual-pane Marta file manager is the upgrade your Mac workflow has been waiting for.

macOS Finder has served Mac users faithfully since 1984 — but its age is showing. For anyone who regularly moves files between folders, manages projects with complex directory structures, or simply wants a more keyboard-friendly workflow, Finder’s single-pane design quickly becomes a bottleneck. Marta is a modern, native macOS file manager that addresses every one of these frustrations head-on.

Best of all? It’s free.

🗂 What is Marta?

Marta is a dual-pane, keyboard-driven file manager built exclusively for macOS. Developed by Yan Zhulanow, it borrows the powerful two-panel paradigm from classic file managers like Total Commander and Midnight Commander — but wraps it in a clean, native macOS interface. It feels right at home on your Mac while giving you superpowers that Finder simply cannot match.

It is highly customisable, supports themes, and even has its own plugin and scripting ecosystem. But even out of the box, the difference is immediately noticeable.

⚙️ How to Install Marta

Getting Marta up and running takes under two minutes. You have two options:

1
Option A — Direct Download (Recommended) Head to the official Marta website and download the latest release directly.
→ marta.sh
2
Option B — Install via Homebrew If you use Homebrew, install Marta with a single terminal command:
brew install –cask marta
3
Move to Applications & Launch If you used the .dmg file, drag Marta into your Applications folder and open it. macOS may ask you to confirm — click Open.
4
Grant Full Disk Access (Optional but Recommended) Go to System Settings → Privacy & Security → Full Disk Access and toggle Marta on. This ensures no folder is off-limits.

✨ Why Marta Beats Finder

Here are the features that make Marta a genuine step-change in your file management experience:

🪟

Dual-Pane Navigation — The Game Changer

The single biggest advantage Marta has over Finder is its side-by-side dual-pane view. Your screen is split into two independent file panels, each showing a different folder. You can see your source and destination simultaneously — copy or move files between them without ever losing your place or juggling multiple Finder windows.

Marta — Dual Pane View
📁 ~/Documents/Projects
📂 report-2024
📄 summary.pdf
📄 data.csv
📂 archive
📁 ~/Desktop/Submissions
📂 week-01
📂 week-02
📄 notes.txt
📄 README.md

For power users — developers, academics, content creators — this alone is worth the switch. No more shuffling windows. No more losing track of where you’re copying to.

📁

Create New Folders in Seconds

In Finder, creating a new folder means right-clicking and hunting through a context menu. In Marta, it’s a single keyboard shortcut — press it and a new folder appears inline, ready to be named. No mouse required, your workflow never breaks stride.

New Folder shortcut: + + N → New folder created inline
⌨️

Fully Keyboard-Driven

Navigate, open, rename, copy, move, and delete files without ever touching the mouse. Marta’s keyboard-first design means experienced users can fly through file operations far faster than any GUI-only workflow allows.

🗃️

Tabs & Bookmarks

Keep multiple folder locations open as tabs within each panel. Bookmark your most-used directories and jump to them instantly — particularly powerful for large project hierarchies.

🎨

Themeable & Configurable

Marta supports custom themes and a powerful configuration file (conf.marco). You can remap shortcuts, add plugins, and tailor the entire interface to match your exact preferences.

💡

Pro tip: You don’t have to remove Finder — it remains the system default for things like the Desktop and disk operations. Simply use Marta as your primary navigation tool for day-to-day file work, and enjoy the best of both worlds.

🏁 The Verdict

Marta won’t replace Finder for every macOS task — but as a daily driver for navigating, organising, and moving files, it is simply in a different league. The dual-pane view alone transforms how you work with files, and features like instant folder creation and keyboard navigation make it feel like a tool built for people who actually use their computer seriously.

If you’ve ever felt frustrated waiting on Finder’s slow animations, losing track of copy destinations, or clicking through five menus just to create a folder — give Marta five minutes. You won’t go back.

macOS Productivity File Manager Marta Workflow

Written for macOS power users · Marta is free & open-source

marta.sh →

✦ This article was generated with the assistance of Claude by Anthropic

Streamlining macOS Application Management with Homebrew Cask

macOS users frequently face the challenge of efficiently managing application installations across multiple machines. The traditional approach involves manually downloading disk images, navigating installation wizards, and maintaining applications across systems. Homebrew Cask offers a command-line solution that significantly streamlines this process.

Understanding Homebrew Cask

Homebrew Cask is an extension of Homebrew, the widely-adopted package manager for macOS. While Homebrew manages command-line tools and libraries, Cask extends this functionality to graphical user interface (GUI) applications. This enables system administrators, developers, and power users to install, update, and manage standard macOS applications through terminal commands.

The conventional installation workflow requires multiple steps:

  1. Locating the official download source
  2. Downloading the disk image file
  3. Opening and mounting the disk image
  4. Transferring the application to the Applications folder
  5. Ejecting the disk image
  6. Managing the downloaded installer file
  7. Repeating this process for each required application

Homebrew Cask reduces this to a single command:

brew install --cask google-chrome

The application is then installed automatically with no further user interaction required.

Key Advantages for Professional Workflows

1. Accelerated System Provisioning

Organizations and individual users can maintain installation scripts containing all required applications. A typical enterprise development environment setup might include:

brew install --cask visual-studio-code
brew install --cask docker
brew install --cask slack
brew install --cask zoom
brew install --cask rectangle
brew install --cask iterm2
brew install --cask spotify
brew install --cask vlc

This approach reduces new machine setup time from several hours to approximately 15-20 minutes, depending on network bandwidth and the number of applications being installed.

2. Simplified Update Management

Maintaining current software versions is essential for security compliance and feature availability. Rather than monitoring and updating each application individually, administrators can execute a single command:

brew upgrade --cask

This command updates all Cask-managed applications to their latest versions, ensuring consistent patch management across the system.

3. Complete Application Removal

Standard macOS uninstallation methods often leave residual files including configuration data, cache files, and preference files distributed throughout the file system. Homebrew Cask performs thorough removal:

brew uninstall --cask docker

This ensures complete application removal without orphaned system files.

4. Automation and Standardization

Homebrew Cask’s command-line interface enables scripting and automation. Development teams can create standardized setup scripts ensuring consistent development environments. IT departments can implement automated workstation provisioning workflows. System configurations can be version-controlled in dotfiles repositories, enabling rapid deployment and rollback capabilities.

Recommended Applications by Category

The following applications represent commonly deployed tools across professional environments:

Development Tools

brew install --cask visual-studio-code
brew install --cask iterm2
brew install --cask docker
brew install --cask postman
brew install --cask dbeaver-community

Productivity Applications

brew install --cask rectangle        # Window management
brew install --cask alfred           # Enhanced search functionality
brew install --cask obsidian         # Knowledge management
brew install --cask notion           # Collaborative workspace

Communication Platforms

brew install --cask slack
brew install --cask zoom
brew install --cask discord

System Utilities

brew install --cask the-unarchiver
brew install --cask appcleaner
brew install --cask vlc

Implementation Guide

Organizations and users without an existing Homebrew installation can deploy it with a single command:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Once Homebrew is installed, Cask functionality is built right in. Just start using brew install --cask commands.

Useful Commands to Know

# Search for an app
brew search --cask chrome

# Get information about an app
brew info --cask visual-studio-code

# List all installed cask apps
brew list --cask

# Update all apps
brew upgrade --cask

# Uninstall an app
brew uninstall --cask slack

A Few Gotchas

Cask isn’t perfect. Here are some things to be aware of:

  • Not every app is available – Popular apps are well-covered, but niche or very new applications might not be in the repository yet
  • App Store apps aren’t included – Apps distributed exclusively through the Mac App Store can’t be installed via Cask
  • Some apps require manual steps – Occasionally, an app needs additional configuration or permissions that Cask can’t automate
  • Updates might lag slightly – Cask maintainers need to update formulas when new versions release, so there can be a brief delay

These are minor inconveniences compared to the time saved.

The Bottom Line

Homebrew Cask has fundamentally changed how I interact with my Mac. What started as a way to avoid repetitive downloads has become an essential part of my workflow. The ability to script, automate, and version-control my application setup means I’m never more than a few commands away from a productive environment.

If you spend any significant time on macOS, especially as a developer or power user, Homebrew Cask is worth learning. Your future self—the one setting up that next new machine—will thank you.

Try It Yourself

Pick three applications you use regularly and install them via Cask. I bet you’ll be hooked by the simplicity. Start with something like:

brew install --cask visual-studio-code
brew install --cask google-chrome  
brew install --cask rectangle

Welcome to a more efficient way of managing your Mac applications.


What’s your favorite Homebrew Cask application? Have you automated your Mac setup? Share your experiences in the comments below!