Mac Automator: How to Turn Old Workflows Into One-Click Menu Bar Actions

a
appitstudio
9 min read Productivity
Close up shot of a Macbook pro
Photo by Moritz Kindler
Upgrade your Mac Automator workflows to instant menu bar actions with Shortcuts, scripts, and ExtraBar. No coding required.

Apple introduced Mac Automator in 2005, and for nearly two decades it was the go-to tool for anyone who wanted to automate tasks without learning AppleScript. Drag a few actions into a workflow, connect them, and let the Mac handle the repetitive stuff. Batch renaming files, converting images, combining PDFs — Automator made all of it accessible.

Then Apple shifted direction. At WWDC 2021, Craig Federighi announced that Shortcuts was coming to macOS as the future of automation. He called it the beginning of a "multi-year transition." Since then, Mac Automator has not received a single meaningful update. It still ships with macOS in 2026, but it sits there like a museum exhibit — functional yet frozen in time.

If you still rely on Mac Automator workflows, this is your upgrade guide. You will learn how to recreate your most common workflows using modern tools, then go further by turning them into instant one-click actions that live in your menu bar with ExtraBar.

Why Mac Automator Is Fading Away

Understanding why Automator lost Apple's attention helps you plan your migration. The story is straightforward.

In 2016, Apple eliminated the position of Product Manager of Automation Technologies. Sal Soghoian, who had championed AppleScript and Automator for nearly two decades, left the company. That was the clearest signal yet. Five years later, Shortcuts arrived on macOS with Monterey, and Apple confirmed it was Automator's successor.

However, Automator did not disappear overnight. Apple built a migration path — you can drag an Automator .workflow file into Shortcuts, and the app converts most actions automatically. Some complex workflows with unsupported actions do not convert cleanly. Still, the intent is obvious.

Here is where things stand today. Mac Automator still works on macOS 26 (Tahoe). Apple has not officially deprecated it in developer documentation. But it has received no new features, no new actions, and no interface updates since Shortcuts arrived. Meanwhile, Shortcuts gained personal automations, Apple Intelligence integration, and deeper system hooks with every macOS release.

For power users, the writing is on the wall. The question is not whether to move on from Mac Automator — it is how to move on and end up with something better.

What Mac Automator Did Well

Before migrating, it helps to understand what made Automator valuable. These are the workflows people built most often.

File Operations

Automator excelled at batch file tasks. Renaming dozens of files at once, moving files between folders based on rules, converting image formats, and resizing photos in bulk were all common use cases. Folder Actions let you trigger workflows automatically when new files appeared in a specific folder.

PDF Tasks

Combining multiple PDFs into one document was one of Automator's most popular workflows. Additionally, extracting pages, adding watermarks, and converting documents to PDF were all straightforward with built-in actions.

App Launching and Sequencing

Many users created Automator applications that launched a specific set of apps simultaneously. A "morning routine" workflow might open Mail, Calendar, Slack, and a browser with specific tabs — all from a double-click on a single file.

Quick Actions and Services

Automator could create Quick Actions (formerly called Services) that appeared in the Finder right-click menu or the Services submenu. For example, a Quick Action to resize selected images or convert text to uppercase was easy to build and always accessible.

Shell Scripts and AppleScript

For advanced users, Automator served as a visual wrapper around shell scripts and AppleScript. You could embed code inside a workflow, pass input between actions, and create something sophisticated without writing a full standalone script.

The Modern Mac Automator Replacement Stack

No single tool replaces everything Mac Automator did. Instead, a combination of modern tools covers all the same ground — and goes much further. Here is the stack that works best in 2026.

Apple Shortcuts — The Official Successor

Shortcuts is Apple's direct replacement for Automator. It uses a block-based visual editor that supports if/then branching, repeat loops, and variables. As a result, it handles more complex logic than Automator ever could.

What Shortcuts does well:

  • Runs across all Apple devices — Mac, iPhone, iPad, Apple Watch
  • Supports personal automations triggered by time, location, Wi-Fi, or Focus mode
  • Integrates with Siri for voice-activated workflows
  • Accepts imported Automator workflows for basic migration
  • Includes hundreds of built-in actions for files, media, web, and system tasks

Where Shortcuts falls short:

  • The visual editor becomes unwieldy for complex multi-step workflows
  • Advanced scripting support is limited compared to Automator's shell script action
  • Discoverability is poor — your shortcuts live inside an app you have to open

That last point matters. Shortcuts are powerful, but they are hidden by default. You have to remember they exist, open the app, and find the right shortcut. This is where ExtraBar changes the game.

ExtraBar — Your Visual Trigger Layer

ExtraBar turns your macOS menu bar into a command center for all your automations. Instead of burying your Shortcuts inside an app, you surface them as clickable menu bar actions.

The connection is direct. ExtraBar's Run Shortcut action lets you trigger any macOS Shortcut by name. Alternatively, use the Deep Link action with the shortcuts:// URL scheme for more control:

  • Run any shortcutshortcuts://run-shortcut?name=Morning%20Setup
  • Pass input from clipboardshortcuts://run-shortcut?name=Process%20Text&input=clipboard
  • Pass custom textshortcuts://run-shortcut?name=Log%20Entry&input=text&text=Meeting%20notes

Consequently, every Shortcut you build becomes a one-click action in your menu bar. Organize them into folders, assign hotkeys, and switch between preset configurations depending on your current task.

ExtraBar requires zero permissions to work. There is no Screen Recording or Accessibility access needed. Everything runs locally with no analytics or telemetry — just your actions, always accessible.

Shell Scripts — For What Shortcuts Cannot Do

Some Mac Automator workflows relied heavily on shell scripts and AppleScript. Shortcuts handles basic scripting, but for anything complex, running scripts directly is still the best approach.

ExtraBar's Run Script action supports eight languages: AppleScript, shell scripts (zsh/bash), Python, Node.js, Ruby, PHP, Perl, and Lua. You can write scripts inline with syntax highlighting or point to a file on disk. ExtraBar detects interpreters automatically, including Homebrew paths.

For example, here is a simple shell script that clears your Downloads folder of files older than 30 days:

find ~/Downloads -type f -mtime +30 -delete

Add this as a Run Script action in ExtraBar, and it becomes a one-click cleanup button in your menu bar. No Terminal needed.

Keyboard Maestro — For Complex Automation

Keyboard Maestro fills the gap for truly advanced automation that neither Shortcuts nor scripts handle easily. It supports conditional logic, loops, variables, over 30 trigger types, and hundreds of built-in actions.

Importantly, ExtraBar integrates with Keyboard Maestro through deep links. Trigger any macro from your menu bar using:

kmtrigger://macro=Your%20Macro%20Name

This means you can build sophisticated multi-step macros in Keyboard Maestro and access them instantly from ExtraBar — without remembering trigger shortcuts or opening the Keyboard Maestro app.

What Migrating From Mac Automator Actually Looks Like

The theory is straightforward — move workflows to Shortcuts, add scripts where needed, trigger everything from ExtraBar. But what does that actually look like in practice?

Consider a freelance designer who used to have a Mac Automator application for each client. Every morning, she would double-click "Client-A-Setup" and Automator would launch Figma, Slack, and a browser with three tabs. It worked, but it was blunt — just opening apps, nothing specific.

After switching to ExtraBar, she created a preset for each client instead. Client A's preset does not just open Figma — it deep links to the exact Figma file she is working on this week. The Slack action opens that client's channel directly. A Notion deep link jumps to the project board. Another action opens the client's shared Google Drive folder.

When she switches to Client B after lunch, one hotkey swaps her entire menu bar. Different Figma file, different Slack channel, different Notion board, different folder. The context switch takes one second instead of five minutes of clicking around inside apps.

She also moved her old Automator Quick Actions — image resizing, PDF combining — into Run Shortcut and Run Script actions inside an ExtraBar "Tools" folder. One click from the menu bar instead of right-clicking files and hunting through the Services submenu.

Her old Mac Automator workflows opened apps. Her ExtraBar presets open exactly where she left off inside those apps. That distinction matters more than it sounds.

Organizing Your New Mac Automator Replacement System

After migrating your Mac Automator workflows, organization becomes important. ExtraBar provides three layers of structure.

Presets let you save completely different bar configurations. Create one for work, one for personal tasks, and one for a specific project. Each preset holds its own apps, actions, and deep links. Switch between them with a hotkey or from the preset list.

Folders group related actions behind a single icon. Create a "File Tools" folder for your renaming, PDF, and image scripts. Add a "Meetings" folder for Zoom and Google Meet deep links. Build an "Automations" folder for your Shortcuts and Keyboard Maestro macros.

Action menus let you attach multiple actions to a single app icon. Your Figma icon can have deep links to five different files. Your Slack icon can list your six most-used channels. Right-click menus add even more options.

ExtraBar also supports export and import. Save your entire setup as a JSON file. Import it on another Mac. Share template configurations with teammates who need similar workflows. This portability is something Mac Automator never offered.

Frequently Asked Questions

Q: Is Mac Automator still available on macOS?

Yes. Mac Automator still ships with macOS 26 (Tahoe) and works as it always has. However, Apple has not updated it with new features since Shortcuts arrived on the Mac in 2021. It is effectively in maintenance mode.

Q: Can I convert Automator workflows to Shortcuts?

Yes. Drag an Automator `.workflow` file into the Shortcuts app, and it converts most actions automatically. Some complex workflows with unsupported or third-party actions may not convert cleanly. In those cases, you will need to rebuild those steps manually.

Q: What is the best Mac Automator replacement in 2026?

No single tool replaces everything. Apple Shortcuts handles most visual automation. Shell scripts and AppleScript cover advanced tasks. Keyboard Maestro adds complex conditional logic. ExtraBar ties them all together by giving every automation a one-click trigger in your menu bar.

Q: Does ExtraBar work with Apple Shortcuts?

Yes. ExtraBar can trigger any macOS Shortcut in two ways — through the built-in Run Shortcut action (select by name) or through deep links using the `shortcuts://` URL scheme. Both methods work with one click from your menu bar.

Q: Can ExtraBar run shell scripts directly?

Yes. ExtraBar's Run Script action supports AppleScript, shell scripts, Python, Node.js, Ruby, PHP, Perl, and Lua. You can write scripts inline or point to a file on disk. The output window shows live results as your script runs.

Q: How does ExtraBar connect to Keyboard Maestro?

Through deep links. Keyboard Maestro supports the `kmtrigger://` URL scheme. Add a Deep Link action in ExtraBar with a URL like `kmtrigger://macro=Your%20Macro%20Name`, and clicking it triggers that macro instantly.

Q: Does ExtraBar require any special permissions?

No. ExtraBar works with zero permissions out of the box. There is no Screen Recording or Accessibility access required for core functionality. Accessibility permission is optional and only needed for enhanced global keyboard navigation. The app works entirely offline after license activation.

From Mac Automator to Action Bar

Mac Automator served its purpose well. For nearly twenty years, it made automation accessible to people who did not want to write code. But it has been standing still while everything around it evolved.

The modern approach is better in every way. Shortcuts gives you visual automation with cross-device sync. Scripts give you unlimited power. Keyboard Maestro gives you conditional logic and advanced triggers. And ExtraBar gives you the piece Mac Automator never had — a persistent, visual, always-accessible launch point for every automation you build.

Stop opening apps to find your tools. Instead, put your most important actions where you can always reach them. ExtraBar makes your menu bar work the way you do — one-time purchase, lifetime updates, zero permissions, and complete privacy.

Related Articles