App Logo AppAddict
March 25th, 2026

10 Tiny Mac Workflow Tweaks that Save Me Time Every Day

Mac Apps
Power User Apps

I spend a lot of time trying to remove small bits of friction from my Mac workflow. macOS is a great system, but out of the box it still leaves a lot of obvious automation opportunities on the table.

I spend a lot of time trying to remove small bits of friction from my Mac workflow. macOS is a great system, but out of the box it still leaves a lot of obvious automation opportunities on the table.

Most of the improvements I rely on come from stitching together tools like AppleScript, Keyboard Maestro, Shortcuts, and a few power-user utilities I discovered at r/MacApps.

None of this is complicated once it’s set up. The goal is just to eliminate little interruptions that happen dozens of times a day.

Here are a few small automations and workflow tweaks that currently make my Mac feel a lot more like my machine.

  • I like Safari, but I don’t like how easily it spawns extra windows. I now use an AppleScript tied to Keyboard Maestro. With a mouse click or hotkey, it closes every Safari window except the frontmost one.
  • Safari has good AppleScript and Shortcuts support, but it still doesn’t provide a keyboard-friendly way to jump directly to a specific Tab Group. My workaround is an Apple Shortcut that batch-opens groups of URLs that mirror my tab groups: Server, Social, Blogging, Software, etc.
  • I set up BetterTouchTool so that fn + Button 3 on my Logitech mouse triggers the New command across roughly two dozen apps. Depending on the app, that can mean a new tab, new note, new document, new Shortcut, new Keyboard Maestro macro, new email, or new message.
  • I’m currently using SideNotes as my scratchpad. It stays hidden on the right edge of my primary display until I toggle it with a hotkey or an ExtraBar menu item.

Most of these are tiny things, but they add up surprisingly fast

  • I use Rectangle Pro’s layout manager to launch and arrange 10 apps across two displays and eight virtual desktops. Each desktop has a keyboard shortcut, and I tie them together with a single Keyboard Maestro macro. (download link)
  • I wrote a small shell script (download link) that reconnects me to Tailscale if the connection drops or fails to start. It runs via launchd, configured through Lingon Pro.
  • I use macOS 26’s automation features in Apple Shortcuts to create my daily Obsidian note from a template. The automation also inserts a weather report and the day’s calendar events, so the note is ready when I sit down at my desk each morning. (Requires Actions for Obsidian.)
  • When I need a dual-pane file manager instead of Finder, a Keyboard Maestro trigger runs an AppleScript that closes all Finder windows and replaces them with a ForkLift window. (download macro)
  • I removed the menu bar icons for BetterTouchToolDefault Folder XSupercharge, and Rectangle Pro. Their functions are now exposed through ExtraBar instead.
  • If a developer doesn’t expose a URL scheme, you can’t deep-link into specific menu items. Finder is a good example; there’s no direct link for Go to Folder. ExtraBar can run scripts, though, so a small AppleScript can send keystrokes to trigger the command. If the feature exists in a menu but has no keyboard shortcut, you can also create your own under System Settings → Keyboard → Keyboard Shortcuts.

Sample Script

tell application "Finder"
activate
end tell
tell application "System Events"
keystroke "g" using {command down, shift down}
end tell


None of these are huge changes individually, but together they remove a lot of small interruptions during the day.

Curious what small automations or workflow tricks other people here are using.