Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FinderFollow

FinderFollow is a lightweight macOS menu bar utility that keeps system file pickers in sync with the folder you are viewing in Finder.

Open an upload, open, or save dialog, switch to Finder and navigate to another folder, then switch back. FinderFollow automatically moves the file picker to that folder.

This application is built with codex.

Features

  • Automatically follows the frontmost Finder window when you return to a system file picker
  • Supports standard open, save, and upload dialogs
  • Uses event-driven accessibility notifications instead of continuous polling
  • Provides a global manual-sync shortcut: Control-Option-Command-G
  • Runs quietly in the menu bar without a Dock icon
  • Can launch automatically when you sign in
  • Supports both Apple Silicon and Intel Macs
  • Does not connect to the internet or collect file information

Requirements

  • macOS 12 Monterey or later
  • Accessibility permission
  • Finder Automation permission only when the Accessibility API cannot read the current folder

Installation

  1. Download the latest prebuilt archive from the GitHub Releases page.
  2. Extract the archive and move FinderFollow.app to /Applications.
  3. Open FinderFollow. It appears as a folder icon in the menu bar and does not appear in the Dock.
  4. When prompted, open System Settings > Privacy & Security > Accessibility and enable FinderFollow.
  5. If macOS asks whether FinderFollow may control Finder, choose Allow. This permission is used only as a fallback for reading Finder's current folder.

Prebuilt development releases are ad-hoc signed. If Gatekeeper prevents the app from opening, Control-click FinderFollow.app, choose Open, and confirm. Alternatively, allow it from System Settings > Privacy & Security.

After replacing the app with a newer build, macOS may require you to enable its Accessibility permission again.

Usage

Automatic sync

  1. Open a system file picker in any application.
  2. Switch to Finder.
  3. Navigate to the folder you want to use.
  4. Switch back to the original application.

FinderFollow moves the file picker to Finder's current folder automatically. Automatic sync is enabled by default and can be paused from the menu bar.

Manual sync

With a system file picker in the foreground, press:

Control-Option-Command-G

You can also choose the manual sync command from the FinderFollow menu bar menu.

Permissions

Permission Why it is needed
Accessibility Detects system file pickers, reads the active Finder window, and enters the destination path into the file picker.
Automation: Finder Provides a fallback for reading Finder's current folder when it is unavailable through Accessibility.

FinderFollow does not read file contents, send analytics, or make network requests.

Known limitations

  • Finder virtual locations such as Recents, search results, and tags do not have normal filesystem paths and cannot be followed.
  • Applications that use a custom file browser instead of the standard macOS file picker may not be supported.
  • Opening iCloud, network, or external-drive folders can still be delayed by the underlying storage provider.
  • The app must remain running in the menu bar.

Building from source

Install the Apple Command Line Tools if they are not already available:

xcode-select --install

Build the universal application bundle:

./Scripts/build-app.sh

The resulting application is written to:

dist/FinderFollow.app

The build script compiles both arm64 and x86_64 executables, combines them into a universal binary, generates the app icon, and applies an ad-hoc signature. A public production release should use a Developer ID certificate and Apple notarization.

Run the standalone smoke tests with:

./Scripts/test.sh

The project uses Swift 5.8 and does not require third-party dependencies or a full Xcode installation.

How it works

FinderFollow combines several native macOS APIs:

  • NSWorkspace observes application activation and deactivation.
  • AXObserver listens for Finder and file-picker accessibility events.
  • The Accessibility API identifies the active file picker and reads Finder's current directory.
  • Finder Apple events provide a fallback when the directory is unavailable through Accessibility.
  • The app opens the native Go to Folder field, enters the captured path, and confirms it.

All interaction delays are centralized in AppTiming.swift and currently set to 50 milliseconds.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages