❌

Normal view

  • βœ‡App Addict
  • Setting Up a New Mac the Easy Way
    M4 Mac Mini When I bought my last new Mac two years ago, I set it up the way I had been setting up my personal computers for years: plug in a Time Machine drive and run Migration Assistant. On a modern Mac with an SSD, even if you have hundreds of apps installed like I do, the whole process takes about 20 minutes. It recreates your Applications folder, brings over preferences, and generally makes the new machine feel finished almost immediately. Nothing could be easi
     

Setting Up a New Mac the Easy Way

16 March 2026 at 12:35
M4 Mac Mini

When I bought my last new Mac two years ago, I set it up the way I had been setting up my personal computers for years: plug in a Time Machine drive and run Migration Assistant. On a modern Mac with an SSD, even if you have hundreds of apps installed like I do, the whole process takes about 20 minutes. It recreates your Applications folder, brings over preferences, and generally makes the new machine feel finished almost immediately.

Nothing could be easier.

There is a downside, though. Migration Assistant faithfully brings over all the accumulated cruft along with the good stuff. That’s how I ended up with Keychain entries for wireless access points I installed in 2014, and references in ~/Library/Application Support to apps I haven’t touched in years.

UPS is dropping a Mac mini on my doorstep sometime this morning. For the first time in a long time, I’m not going to use Migration Assistant.


Automated App Installation

Thanks to tools like Updatest and Cork, I’ve moved every application that can be managed by Homebrew into that ecosystem. On my current machine that covers 212 GUI apps plus 260 CLI packages and dependencies.

Recreating that environment on a new Mac is trivial.

To back up your current setup:

brew bundle dump

To install everything on a new Mac:

brew bundle install

By default, Homebrew can also install Mac App Store apps using the mas CLI. The generated Brewfile is plain text and extremely easy to edit if you want to remove anything before installing.

A small sample looks like this:

cask "gechr/tap/whichspace"

cask "wifi-explorer"

cask "wins"

cask "xbar"

cask "xnconvert"

cask "xnviewmp"

cask "zen"

cask "zotero"

mas "Acidity", id: 6472630023

mas "Actions", id: 1586435171

mas "Actions For Obsidian", id: 1659667937

mas "Amphetamine", id: 937984704

mas "AppTela", id: 6752568197

mas "AutoMounter", id: 1160435653

If you don’t use Homebrew, you can still automate Mac App Store installs directly with the mas CLI.

To export a list of installed App Store apps:

mas list | cut -d' ' -f1 > mas-app-ids.txt

To install them on a new Mac:

xargs -n1 mas install < mas-app-ids.txt

To identify apps that were installed outside Homebrew or the Mac App Store, run:

system_profiler SPApplicationsDataType -json > installed-apps.json

Open the resulting JSON file in a text editor like BBEdit. Any app showing:

_“obtained_from” : “identified_developer” _

was installed directly from a developer download and will need to be reinstalled manually.


Configuration

Applications are the easy part. Configuration is harder.

Just entering license keys and registration details for my paid apps could easily take hours.

I briefly looked at Mackup, but it doesn’t seem well suited for a GUI-heavy workflow like mine. A more modern tool, chezmoi, looks promising for exporting and restoring my dotfiles, including things like:

• .zshrc

• .gitconfig

• ~/.ssh/config

• .config/nvim/init.vim

For everything else, my plan is simple: build a small set of rsync jobs by hand and move over only what I actually need.

To avoid permission issues and sandbox quirks, I’ll launch each application once before restoring its configuration so macOS creates the necessary directories:

~/Library/Application Support/

~/Library/Preferences/

~/Library/Containers/

~/Library/Group Containers/

Because I run a heavily automated setup with apps like Keyboard MaestroBetterTouchTool, Hazel, and Raycast, I’ll rely on their built-in export/import features rather than trying to automate those configs.

It’s technically possible to script the capture of a large number of system settings. In practice, the time it would take to build and debug that script would probably exceed the time it takes me to reconfigure things manually.


Teaching an Old Dog New Tricks

Earlier in my career in edtech, I spent a lot of time doing large-scale Mac deployments. The workflow was simple: build a golden image and deploy it hundreds of times using NetBoot to whatever hardware the district had just purchased.

Later we moved to modern deployment systems like Jamf.

If you need 900 eMacs unboxed and deployed, I’m your guy.

Highly opinionated personal setups like the ones most of us run on our own Macs are a different animal entirely. There’s no universal image for that kind of machine.

But there’s a lot we can learn from each other about building reproducible setups that stay clean over time instead of dragging a decade of digital barnacles from one Mac to the next.

✉️ Reply by email

  • βœ‡App Addict
  • Octarine: Powerful, Sophisticated and Easy to Use
    Octarine I’ve been hearing about Octarine for a while. It’s one of those apps that people whose opinions I respect talk about with a certain level of admiration. After testing it as thoroughly as I’ve tested any app in a long time, I understand why. Octarine is a tool for creating, editing, and organizing text-based information using connected but independent documents: Markdown files. Without relying on plugins, it supports image
     

Octarine: Powerful, Sophisticated and Easy to Use

19 March 2026 at 21:34
Octarine
Octarine

I’ve been hearing about Octarine for a while. It’s one of those apps that people whose opinions I respect talk about with a certain level of admiration. After testing it as thoroughly as I’ve tested any app in a long time, I understand why.

Octarine is a tool for creating, editing, and organizing text-based information using connected but independent documents: Markdown files. Without relying on plugins, it supports images, video, PDFs, and files created by other productivity apps. Those files can be linked inside Octarine but still open in their native applications.

Octarine isn’t designed for a single purpose. It’s more like a flexible Markdown workspace you can adapt to several overlapping uses:

  • Journaling
  • Task management
  • Writing and long-form drafting
  • Math or science reference notes
  • Documentation
  • Personal knowledge management (PKM)
  • Project planning

Setup

Octarine is available for Windows, Linux, and macOS, but it’s not a heavy Electron app. The download is just over 30 MB, and it launches as fast as TextEdit; effectively instant.

The interface is tab-based, similar to a web browser. It isn’t strictly native macOS UI, but it’s clean, responsive, and supports customizable themes.

Installation on the Mac is simple:

  1. Open the downloaded DMG
  2. Drag Octarine.app into /Applications

That’s it.

When you launch it for the first time, Octarine asks you to open or create a Workspace. A workspace is simply a folder of Markdown files; either ones you create or notes that already exist somewhere on your Mac.


Structure

You can download, install, and configure Octarine in well under a minute and immediately start creating documents.

A key design choice is that Octarine uses the filesystem directly. Your workspace is just a folder containing Markdown files with human-readable filenames.

That means:

  • You can manage files directly in Finder
  • You can open them in any text editor
  • Octarine will immediately reflect changes made elsewhere

I verified this by opening a note in Typora, adding a table, and watching it render instantly inside Octarine.

Because everything lives in normal folders and Markdown files, syncing is straightforward. You can use:

  • iCloud Drive
  • Google Drive
  • Syncthing
  • GitHub repositories (built-in integration)

The Git support also provides versioning for people who want a real audit trail for their notes.

Like most PKM-oriented tools, Octarine supports wikilinks. Typing [[ opens a searchable list of notes in the workspace. If you bracket a title that doesn’t exist yet, Octarine offers to create the note.

There’s also a knowledge graph showing connections between notes. Just remember: posting screenshots of your graph online costs you several internet credibility points.


Formatting

Most formatting tools are accessible through a slash command menu (/), which exposes a wide range of Markdown and extended elements:

  • Headers
  • Text styles (bold, italic, strikethrough)
  • Callouts
  • Code blocks
  • Mermaid diagrams
  • LaTeX
  • Dividers
  • Tables
  • Colored text
  • Dates
  • Links
  • Templates

You could easily use Octarine purely as a writing tool. It’s a full Markdown editor with live rendering similar to apps like Typora.

Under the hood, however, the file remains a plain text Markdown document. You can open it in BBEdit, import it into Obsidian, or process it with any other Markdown tool.

Octarine also converts pasted HTML into Markdown, preserving elements such as headers, links, bullet lists, and text styles.


Organization

The left sidebar provides a file tree for navigating your workspace. Nested folders work exactly as you’d expect.

When you attach files such as images or PDFs to a note, Octarine automatically creates folders to store them.

Octarine also supports seven types of metadata, which can be used to organize and filter notes.

The most powerful organizational feature is something called Views.

Views are dynamic, database-style tables that display notes based on filters, sorting rules, and custom columns.

Think of them as smart saved searches that update automatically as your notes change.

Tagging is also well implemented. Tags are clickable throughout the interface, and a Tag Manager provides a centralized list of every tag in your workspace.


AI Integration (Pro Version)

Octarine includes optional AI integration.

It works with:

  • Local models via Ollama and LM Studio
  • Apple Intelligence
  • Cloud APIs such as OpenAI, Anthropic, and Google Gemini

AI operates within the context of the current note, allowing it to generate, rewrite, summarize, or refine content.

Like most AI writing workflows, the real learning curve comes from developing reusable prompts that produce consistent results.

Pro users can also download a 90 MB local model that can index an entire workspace to provide additional context-aware features:

  • Context indicators

Each message shows the sources used (folders, notes, or date filters). Icons and hover cards reveal the details.

  • References

A list shows which notes were consulted to answer your query.

  • Export options

Responses can be copied as Markdown or plain text.

  • Chat titles

Titles are generated automatically after the first response and can be edited using the Sparkles icon.

  • Save the chat

Clicking the Create Note icon in the chat breadcrumb saves the conversation as a note. Your questions become blockquotes, with each Q&A pair separated by a divider.


An Opinion on an Opinionated App

There’s no question that Octarine is powerful.

As someone who has spent years building PKM systems, I can appreciate how much functionality is available without needing plugins or complex setup. Many of the features Octarine includes by default require significant configuration in something like Obsidian.

That simplicity removes a lot of early decisions that intimidate people exploring tools like this.

Octarine is developed by a single developer, which might give some users pause. Personally, it doesn’t worry me much. Some of the most respected Mac utilities come from solo developers, including:

  • Keyboard Maestro
  • Hazel
  • BetterTouchTool
  • Rectangle Pro

Looking at Octarine’s update history, development is clearly active and responsive to feedback.

The changelog shows frequent updates, and the roadmap includes plans for:

  • iOS and Android versions
  • One-click publishing
  • Quick capture tools
  • Task-management improvements
  • Browser extensions

…and quite a bit more.

With the exception of AI features, most of Octarine’s functionality is available in the free version.

The Pro license currently costs $70 (early-bird supporter pricing) and unlocks all current and future features. That isn’t cheap, but it’s roughly in line with other established writing tools like iA Writer ($69) or utilities such as TextSoap ($45).

For users who want a structured Markdown workspace without the plugin rabbit hole, Octarine is definitely worth a serious look.

2026-04-01 - Recent Changes

  • Bullet lists and task lists with nested children now show a collapse chevron on hover — click it to fold the nested items out of sight, keeping long outlines manageable.
    • Collapse state (headings, codeblocks, lists & tasks) are persisted automatically, so collapsed sections stay collapsed when you restart the app.

Performance

  • Significantly reduced CPU and memory usage across the app — typing, idle, and workspace switching are all lighter.
  • Improved workspace watching functions to be more performant and less power consuming.
  • Reduced CPU spikes during workspace indexing.
  • Embedding pruning for large workspaces is now much faster.

Improvements

  • Date cells in Views now respect your preferred date format.
  • Ask Octarine & Writing Assistant now shows error messages as toasts when something goes wrong, instead of failing silently.
  • The task migration flow uses fewer file operations, making it faster and more reliable.

✉️ Reply by email

  • βœ‡App Addict
  • Resurf – A Well-Designed (Almost) Everything Box
    Resurf Resurf is a clever new app, currently in beta, with a lot of potential. This is one of those “I needed an app to do X, so I built one” projects; the difference is that it was built by a design engineer who clearly understands macOS conventions. The result feels native and thoughtfully put together. Using it brought back a few workflow habits I haven’t used since the days when Evernote was king. The entry point into Resurf is a floating c
     

Resurf – A Well-Designed (Almost) Everything Box

21 March 2026 at 23:37
Resurf
Resurf

Resurf is a clever new app, currently in beta, with a lot of potential. This is one of those “I needed an app to do X, so I built one” projects; the difference is that it was built by a design engineer who clearly understands macOS conventions. The result feels native and thoughtfully put together.

Using it brought back a few workflow habits I haven’t used since the days when Evernote was king.

The entry point into Resurf is a floating capture widget that you trigger with a shortcut. From there you can use either the mouse or the keyboard to capture five types of content, with some overlap:

  • Notes
  • Links
  • Screenshots (using a built-in capture tool)
  • Media
  • Voice memos

The same widget also provides a Spotlight-style search across your Resurf vault, which is essentially the folder where everything you capture is stored.

Practical Use Cases

There are several ways Resurf can fit into a real workflow.

  • Screenshot organizer
    A quick way to capture, store, and resurface reference screenshots without littering your desktop with files named Screenshot 2026-03-21 at 10.43.11.png.
  • Bookmarks and lightweight browser
    Links can open directly inside Resurf so you can skim content without switching to a browser. Eligible pages default to Reader View with adjustable font sizes, but you can switch to a standard page view or send the link to your default browser.
  • Scratchpad
    If you need a fast place to dump temporary information, Resurf works well as a searchable scratchpad. You can open straight into the notes interface and start typing.
  • Quick notes staging area
    Once the shortcut becomes muscle memory, it’s easy to use Resurf for quick capture even if you keep your long-term notes somewhere else. When something turns out to be worth keeping, the macOS share sheet makes it simple to move it into another app.

Organizing Your Data

A Resurf vault can live in iCloud, in another synced folder like Dropbox, or locally on your Mac. If you use iCloud, you’ll be able to pair the Mac version with the upcoming iOS app.

You can also maintain multiple vaults, each located anywhere in your file system.

Within a vault, Resurf provides several ways to organize what you capture:

  • Inbox / Later
    If you don’t want to categorize items during capture, everything can go into an Inbox for later triage. There’s also a Later folder for items you want to defer organizing.
  • Areas
    Areas function much like folders and can hold any content type.
  • Tags
    Tags can be created during capture. The sidebar includes both a tag browser and a dedicated tag view.
  • Pins
    Any item can be pinned to the top of its area.
  • Voice memo export for transcription
    Voice memos can be exported to the file system, making it easy to run them through a transcription tool and turn them into text documents.

Nice Touches

A few small details show that the developer thought about real usage rather than just features.

  • Share Sheet support
    Resurf stores notes internally as JSON rather than plain files, but exporting content to other apps is straightforward through the macOS share sheet.
  • Open In
    Similar to the share sheet; lets you send items directly to another app.
  • Instant Markdown rendering
    Markdown renders automatically without switching between edit and preview modes.
  • Slash commands
    Formatting can be applied quickly using slash commands.
  • Notes about notes
    Every captured item can include an attached note, which is handy for adding context to screenshots, links, or media.
  • Chrome extension
    Lets you save links directly from the browser.

Feature Requests

Resurf is still early in development, and there are a few capabilities that would make it significantly more powerful.

  • Support for clickable internal links to things like Mail messages or Obsidian notes
  • The ability to attach arbitrary documents to notes
  • Inline images inside notes (currently you can only add notes about images)
  • Shortcuts and AppleScript support
  • A Safari extension

Privacy

You can read the full policy here:
https://resurf.so/privacy

Regardless of where your vault lives, your data remains private. The app only contacts Resurf’s servers to validate your license. According to the developer, no identifying information or user content is transmitted during that process or afterward.

The company is based in Canada. Because they never see your data, GDPR provisions around data access, portability, and deletion are largely irrelevant in this case.

Price

$39

  • One-time purchase at the early supporter price. Unlimited captures. Any updates we release are free for 2 years after stable release.
  • Unlimited captures
  • Mac app license (up to 2 Macs)
  • All beta updates included
  • Any updates released are free for 2 years after stable release
  • Priority email support

✉️ Reply by email

  • βœ‡App Addict
  • If These Apps Are Missing My Mac Feels Broken
    Some small utilities become so embedded in my workflow that they start to feel like part of macOS itself. When I sit down at someone else’s Mac or a freshly set-up machine and they aren’t there, it genuinely throws me off. I’m curious what apps fall into that category for you. Shareful One of those apps for me is Shareful by Sindre Sorhus. The Mac share menu has always felt like an afterthought compared to iOS. Many developers don’t bother im
     

If These Apps Are Missing My Mac Feels Broken

22 March 2026 at 14:17

Some small utilities become so embedded in my workflow that they start to feel like part of macOS itself. When I sit down at someone else’s Mac or a freshly set-up machine and they aren’t there, it genuinely throws me off.

I’m curious what apps fall into that category for you.

Shareful

One of those apps for me is Shareful by Sindre Sorhus.

The Mac share menu has always felt like an afterthought compared to iOS. Many developers don’t bother implementing it, and Apple keeps it oddly limited. Shareful fixes that by adding a few practical actions that save me a surprising number of clicks every day:

  • Copy
  • Open In
  • Save As…
  • Save to Downloads

It’s simple, but once you have it, the default share sheet feels incomplete without it.

Start by Innovative Bytes

Even though I’m very much a keyboard-launcher person (Team Raycast), there are situations where that approach breaks down.

Sometimes I need a small, obscure utility whose name I can’t remember. When your /Applications folder is as crowded as mine, scrolling through it isn’t realistic.

That’s where Start from Innovative Bytes comes in. Two features make it especially useful.

  • Tagging
    Tagging lets you create categories for apps without any friction. You can even nest them, like Utilities/Screenshots or Utilities/Clipboard, which makes browsing a large app library much more manageable.
  • Notes
    You can attach a short description to an app so you remember what it actually does.

A good example is the file-conversion utility Consul, which lets you change an image’s format just by renaming it. Seeing a note like “file rename / conversion” when browsing makes it much easier to find again later.

Honorable Mentions

✉️ Reply by email

  • βœ‡App Addict
  • Consul is Supremely Useful
    Automation I’ve become quite fond of Consul, a relatively new file conversion utility that’s both simple to use and easy to automate. The concept is almost absurdly straightforward: change the file extension to the format you want and the conversion just happens. You might think you’ll never really need to convert files from one format to another. In practice, that assumption tends to collapse sooner or later. A few situations I’ve run int
     

Consul is Supremely Useful

24 March 2026 at 15:40
Automation
Automation

I’ve become quite fond of Consul, a relatively new file conversion utility that’s both simple to use and easy to automate. The concept is almost absurdly straightforward: change the file extension to the format you want and the conversion just happens.

You might think you’ll never really need to convert files from one format to another. In practice, that assumption tends to collapse sooner or later. A few situations I’ve run into over the years:

  • Switching from one e-reader (for example, Sony) to another (Kindle) and suddenly needing to convert an entire library of books.
  • My photography workflow revolves around Canon’s RAW format (CR2). When a relative passed away and I inherited his photo archive, the files were a mix of several other RAW formats.
  • After living through the minor apocalypse when Microsoft killed Works, you’d think I would have learned something about proprietary formats. Instead, I spent another twenty years writing in Word before finally switching to Markdown.
  • Occasionally grabbing an iPhone photo and realizing it exported as HEIC, which remains incompatible with far more things than it should be.
  • Optimizing photos and video for my blog or social media.

There are plenty of ways to convert files. Most of them involve some level of friction:

  • Opening an app (Word, for example) and using File → Save As to create another copy in a different format.
  • Uploading files to random conversion websites with unclear privacy policies.
  • Using powerful utilities like Permute, which are excellent but come with a bit of a learning curve.
  • Building your own workflow with Apple Shortcuts if you enjoy assembling that kind of plumbing.

What makes Consul such a pleasure is the complete absence of friction. It runs quietly in the background, and when you need to convert something, it just happens the moment you rename the file. For most conversions, the default settings are fine, but in the settings, you can control exactly how each conversion is handled including the output quality and codec, or whether to strip metadata.

For Mac automation nerds, Consul can be set to watch folders and perform conversions when a certain file type lands there. You can use Consul with Hazel or another automation tool like Crank to route the converted file elsewhere, import it into Photos or upload it to an FTP server.

Consul currently supports 1,391 conversions across 76 file formats, covering images, audio, video, documents, e-books, email, configuration files, spreadsheets, and archives.

The developer’s site suggests more formats are planned. I’d particularly like to see support for Apple iWork files and OpenOffice spreadsheets and presentations. My pie-in-the-sky request would be a PDF → EPUB conversion that performs better than what Calibre currently produces.

Pricing is refreshingly simple. A single license is $14, and a three-seat license is $19, both including a year of updates.

The privacy policy is exactly what you want to see: no data collection. Email support is available, and the developer is active on Reddit and notably friendly when people have questions.

✉️ Reply by email

  • βœ‡App Addict
  • 10 Tiny Mac Workflow Tweaks that Save Me Time Every Day
    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
     

10 Tiny Mac Workflow Tweaks that Save Me Time Every Day

25 March 2026 at 20:22
Power User 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.

✉️ Reply by email

  • βœ‡App Addict
  • Automation Fans Are Going to Love PicMal for Conversions
    PicMal Every Mac user eventually ends up with a pile of files that need converting. Screenshots that are too large for the web. HEIC photos from iPhones that need to become JPEGs. Audio recordings saved at ridiculous bitrates. Video files that need to be optimized for sharing. You can solve all of that with command-line tools like ffmpeg or with a handful of separate utilities. Or you can just use Picmal. Picmal is a single macOS utility that handles
     

Automation Fans Are Going to Love PicMal for Conversions

27 March 2026 at 01:46
PicMal
PicMal

Every Mac user eventually ends up with a pile of files that need converting. Screenshots that are too large for the web. HEIC photos from iPhones that need to become JPEGs. Audio recordings saved at ridiculous bitrates. Video files that need to be optimized for sharing.

You can solve all of that with command-line tools like ffmpeg or with a handful of separate utilities.

Or you can just use Picmal.

Picmal is a single macOS utility that handles image, audio, and video conversion and compression. Once installed, it integrates directly into the Dock, Finder, menu bar, Services, and Shortcuts, so it behaves more like a built-in system tool than a typical standalone app.

It works immediately with sensible defaults, but if you want to tweak codecs, formats, or compression levels, the controls are there.

Images

I’ve set up one of my screenshot apps specifically for images I plan to post on the web. It saves those screenshots into a folder that Picmal watches.

When a file lands there, Picmal automatically:

  • converts it to my preferred format
  • applies a compression level that keeps good clarity while shrinking the file size
  • renames the file so I know it’s already been processed

That automation alone has been useful for blogging and documentation.

If you regularly deal with HEIC photos from iPhones or iPads, Picmal can also watch a folder and convert them automatically.

Picmal also handles image resizing and color space conversion (sRGB, ProPhoto RGB, Display P3, and others). If you’re preparing files for printing, you can adjust DPI as well.

Audio

Batch processing works well. I had a collection of spoken-word recordings from events I’d attended, and many of them had been saved at extremely high bitrates that made sense for music but not for speech.

Picmal converted and compressed the entire batch without complaint. The resulting files sounded the same for spoken content while taking up far less disk space.

Video

Video conversion uses simple presets:

  • Maximum Quality
  • Balanced (Size & Quality)
  • Web Optimized
  • Social Media
  • Maximum Compression
  • Custom

Pick the preset that matches the destination and you’re done. If you need more control, the Custom option exposes additional settings.

Clipboard Optimization

Clipboard optimization lets Picmal compress images you copy to the clipboard. Copy a screenshot, a web image, or a file in Finder and Picmal quietly optimizes it in the background.

A small overlay appears so you can immediately replace the original clipboard contents with the compressed version.

If you enable the option, Picmal can automatically copy the optimized image back to your clipboard. One practical advantage: images processed this way can be pasted into Finder as files, which isn’t something macOS normally allows with clipboard images.

A nice touch: if the image is already efficiently compressed, Picmal detects that and skips the process instead of recompressing it.

How It Fits Into a Typical Mac Workflow

If you already use media tools on macOS, you might be wondering where Picmal fits.

ImageOptim
Great for compressing images, especially for web publishing. Picmal overlaps here but adds format conversion, automation via watched folders, and clipboard workflows.

Permute 
Permute focuses mostly on media conversion with a clean UI. Picmal covers similar ground but adds automation features and deeper Finder integration.

ffmpeg / command-line tools
Still the most flexible option for scripting and complex workflows. Picmal obviously can’t match that level of control, but for everyday tasks it removes a lot of friction.

In practice, Picmal feels less like a replacement for those tools and more like a convenient layer on top of common conversion tasks.

Final Thoughts

At $15.99 per seat with lifetime updates, Picmal is reasonably priced for what it does. There’s also a 15-day no-questions-asked refund.

All processing happens locally on your Mac (macOS 14 or newer), and the developer states that no data is collected. If you want to dig deeper, the developer provides comprehensive documentation on the website.

✉️ Reply by email

  • βœ‡App Addict
  • 500 App Reviews Published!
    Number 500!!! I posted my 500th app review this week. If you keep typing long enough, this is what happens. It makes me super happy and I hope I have helped some of you find apps that you've grown to use and love. If I have, please leave a comment, it will be motivating and appreciated. I want to give a shout out to r/MacApps for all the support and feedback I've gotten there. I also want to thank Scribbles, the blogging platform I've used the entire time. I recently
     

500 App Reviews Published!

29 March 2026 at 10:30
Number 500!!!
Number 500!!!

I posted my 500th app review this week. If you keep typing long enough, this is what happens. It makes me super happy and I hope I have helped some of you find apps that you've grown to use and love. If I have, please leave a comment, it will be motivating and appreciated. I want to give a shout out to r/MacApps for all the support and feedback I've gotten there. I also want to thank Scribbles, the blogging platform I've used the entire time.

I recently added a way for developers to alert me to their apps. If you know anyone who has an app that could use some exposure, please let them know they can request a review here.

AppAddict is just me, one old guy with a laptop and a decades old predilection for clicking the download button on just about every app I see. This is my hobby, not a side job. I do it because I enjoy it. I can't tell you how thrilling it's been to interact with developers of some of my favorite apps. I still have a big streak of fanboy.

Analytics
Analytics

✉️ Reply by email

  • βœ‡App Addict
  • DoubleMemory Doing Great After a Year
    DoubleMemory I’m always impressed when an out-of-the-box thinker builds an app unlike anything I’ve seen before. Iterating on proven concepts is fine, but after testing enough clipboard managers and voice-to-text apps, they all start to blur together. Give me something new, clever, and useful, and I’ll happily change my workflow to make room for it. a year ago, DoubleMemory caught my attention with its interesting feature set and it's done nothing b
     

DoubleMemory Doing Great After a Year

30 March 2026 at 19:06


DoubleMemory
DoubleMemory

I’m always impressed when an out-of-the-box thinker builds an app unlike anything I’ve seen before. Iterating on proven concepts is fine, but after testing enough clipboard managers and voice-to-text apps, they all start to blur together. Give me something new, clever, and useful, and I’ll happily change my workflow to make room for it. a year ago, DoubleMemory caught my attention with its interesting feature set and it's done nothing but improve since then.

DoubleMemory

I sometimes worry that one day my brain will run out of capacity for new hotkey combinations. When that happens, any app that relies on them will be off the table. DoubleMemory neatly sidesteps that problem by baking the instruction directly into its name.

Press ⌘C twice quickly, and the app captures either the webpage you’re on or the text you’ve highlighted. It then drops that content into an aesthetically well-designed, searchable, Pinterest-like interface with some surprisingly useful capabilities.

There’s a setting that allows DoubleMemory to save everything you copy, but I’d advise against leaving that on all the time. It’s not a clipboard manager in the sense that Raycast or PastePal are. For example, it doesn’t capture images.

Where it shines is with URLs. Highlight the URL of any webpage you’re on and press ⌘C twice. DoubleMemory downloads the page content and stores it locally, making it as much a read-it-later tool as a bookmark manager. In practice, it works well as either.

Saved content can sync via iCloud, which means your collection is accessible on your iPhone, iPad, and other Macs.

DoubleMemory also doubles as a lightweight notes tool. Highlight a passage of text anywhere, press ⌘C twice, and it’s saved to your board. From there you can add your own commentary and organize the entry with tags. There’s even optional AI-powered auto-tagging if you want help categorizing things.

One detail I appreciate: DoubleMemory doesn’t require an account, and you don’t need to install a browser extension. If you routinely save URLs from different sources on a specific topic, you quickly end up with a clean, searchable database that works offline.

It’s also refreshingly lightweight. The app uses roughly 10 MB of RAM during normal use. For automation fans, it supports Apple Shortcuts, the macOS share sheet, and drag-and-drop to the Dock (if you enable the Dock icon).

Interesting Features

  • Bookmark Imports
    If you want to migrate an existing read-it-later list or bookmarks from another service (for example Raindrop), DoubleMemory includes solid import tools.
  • Active Roadmap
    I’ve been following the project for about a year, and development has been steady. Planned features include image and screenshot support and automated imports of saved searches. Personally, I’d love to see it pull in my saved Reddit posts.
  • Approachable Developer
    The developer is easy to reach and actively engages with users. There’s a Discord, a Substack newsletter, an active Reddit presence, and a well-maintained website with an up-to-date changelog.
  • Freemium Model
    The free tier already allows unlimited saves, notes, bookmarks, and tags. The Pro plan mainly adds more than three saved searches and supports the developer. Future premium features are expected to focus on advanced retrieval, AI-powered organization, and richer content consumption tools. I have some 50% off subscription codes. Use the comment tool below if you want one.

DoubleMemory has a lot going for it. It’s easy to understand, genuinely useful in daily workflows, and feature-rich without feeling bloated.

✉️ Reply by email

  • βœ‡App Addict
  • BackiGo is a Dependable & Full Featured iCloud Backup Solution
    BackiGo If you rely on iCloud but don’t have a true backup of that data, BackiGo is one of the simplest ways to create one. BackiGo is an iCloud backup app I can recommend for anyone looking for an alternative to Parachute. Parachute is a well-known iCloud backup utility that was recently acquired by a company with a solid reputation, but also a history of price increases and subscription transitions. Who This Is For BackiGo is particularly useful if you:
     

BackiGo is a Dependable & Full Featured iCloud Backup Solution

2 April 2026 at 00:08
BackiGo
BackiGo

If you rely on iCloud but don’t have a true backup of that data, BackiGo is one of the simplest ways to create one.

BackiGo is an iCloud backup app I can recommend for anyone looking for an alternative to Parachute. Parachute is a well-known iCloud backup utility that was recently acquired by a company with a solid reputation, but also a history of price increases and subscription transitions.

Who This Is For

BackiGo is particularly useful if you:

  • Store large amounts of data in iCloud Drive or iCloud Photos
  • Use Optimize Mac Storage, meaning your Mac does not hold full local copies
  • Want an off-Apple backup copy of your iCloud data
  • Need to back up iCloud data to a NAS, external drive, or another cloud provider

Why You Need an iCloud Backup

Sometimes Apple’s logic escapes me. Nowhere is that more obvious than in the opaque world of iCloud.

If you don’t have a method for keeping a versioned backup of your iCloud documents and photos, you should set one up sooner rather than later.

The simplest approach looks like this:

  1. Use a Mac signed into iCloud.
  2. Turn off “Optimize Mac Storage” for both iCloud Drive and Photos.
  3. Allow all files to download locally.
  4. Let Time Machine back up that Mac.

This works because Time Machine will keep historical versions of those files.

Unfortunately, that approach isn’t practical for everyone. If, like me, you pay for 2TB of iCloud storage but your Mac has a much smaller internal drive that can’t be upgraded, downloading everything locally simply isn’t feasible.

Experienced Mac users already understand the core issue: iCloud is a syncing service, not a backup.

If you overwrite a file, the new version replaces the old one everywhere. If you delete a file, it disappears everywhere. If a file becomes corrupted, that corruption syncs too.

Even with Time Machine running, you still won’t have copies of many files if Optimize Mac Storage is enabled, because those files never existed locally on your Mac.

The core idea is simple: get a second copy of your iCloud data somewhere Apple’s sync engine can’t touch it.

One more thing - you can find multiple stories of people permanently losing access to their iCloud accounts through ID theft, malware and Apple’s own policies.

BackiGo Features

This is where BackiGo comes in. The app lets you create a copy of your iCloud data and store it in a variety of locations:

  • External drives (USB or Thunderbolt)
  • Other cloud providers with versioned storage, such as Dropbox or Google Drive
  • A NAS on your home network
  • A shared folder on another computer (including Windows machines)
  • An FTP server
  • WebDAV support is planned

Some of the features I’ve found useful:

  • Universal app that runs on Mac, iPhone, and iPad
  • Flexible photo organization; mirror your Apple Photos structure or export into folders by device/year/month (for example AmerpieMBA/2026/04)
  • Selective backups; back up documents but skip photos, or back up only specific albums
  • Multiple cloud destinations, including Dropbox, Google Drive, OneDrive, pCloud, and Backblaze
  • Incremental and full backups
  • Scheduled backups based on time, frequency, and backup type
  • Local Photos library support for people who use Photos without iCloud
  • Live Photo and shared album support
  • Built-in photo viewer to visually confirm what’s included in a backup
  • Detailed reports of backup and restore history, exportable as HTML or CSV

Recent Updates

Added backup encryption(optional). While iCloud’s Advanced Data Protection (ADP) already encrypts data on Apple’s side, the app now adds client-side encryption, meaning your data is encrypted before it’s written to the backup destination. This helps protect your data even if the storage drive is lost, a cloud service is compromised, or an account gets leaked.

Also added iCloud archive restore support: Restore iCloud Contacts and iCloud Drive documents Search your iCloud documents and restore specific files

Privacy Policy

No data collected.

Developer Website

BackiGo – Complete iCloud Photo backup and restore solution for iOS and Mac

Price

  • Free trial (limited to 500 images)
  • $14.99 lifetime purchase
  • $6.99 annual subscription
  • $0.99 monthly subscription

Available on the Mac App Store with Family Sharing enabled.

✉️ Reply by email

  • βœ‡App Addict
  • Radial 4 Works Best as an Automation Hub
    Radial I spent the afternoon experimenting with Radial 4, a rapidly evolving pie-menu app from independent developer Gustav Lubker of AppVerge. If you’re not familiar with pie menu apps, they present a circular menu divided into sections (or slices), each representing an action or command. When configured well, they map naturally to muscle memory and can be extremely fast to use. Other pie-menu apps I've used include: Pieoneer (good) CirMenu (good) Pie
     

Radial 4 Works Best as an Automation Hub

2 April 2026 at 22:32
Radial
Radial

I spent the afternoon experimenting with Radial 4, a rapidly evolving pie-menu app from independent developer Gustav Lubker of AppVerge. If you’re not familiar with pie menu apps, they present a circular menu divided into sections (or slices), each representing an action or command. When configured well, they map naturally to muscle memory and can be extremely fast to use.

Other pie-menu apps I've used include:

Interface

In Radial, pie menus can include the following types of actions:

  • Input
    • Keyboard Shortcut
    • Text
    • Clipboard
  • Open
    • Open App
    • Open File
    • Open URL
  • Scripting
    • Apple Shortcut
    • AppleScript
    • Shell Script
    • Keyboard Maestro
  • System
    • Window Management
    • System Control

The only obvious thing missing right now is deep-link support for tools like Raycast and similar command launchers.

Some Use Case Ideas

Categorized Launchers

Radial is much more than an app launcher, but it works well for that role. You can create multiple menus and switch between them once a Radial menu is invoked with a keyboard shortcut or mouse gesture. One practical approach is to build menus around categories of apps you use regularly.

Examples:

This kind of grouping works well because the direction of the slice becomes the memory trigger rather than the app name.

Consistent Application Menus

Radial calls menus that are available everywhere global menus. It also supports context-aware menus that appear only in specific apps or groups of apps.

Because Radial includes a template feature, you can create menus that behave consistently across your main working apps. Anything that can be triggered with a keyboard shortcut can live in the menu.

If you place common commands in the same slice position across multiple apps, muscle memory kicks in quickly.

Examples of commands that translate well across apps:

  • New – note, document, macro, shortcut, etc. (⌘N)
  • Settings – quick access to preferences (⌘,)
  • Search / Search and Replace (⌘F and ⌥⌘F)

You can still add app-specific commands; just keep their placement consistent so your muscle memory stays intact. I created Radial menus for Safari, Things, Obsidian, and Drafts using this approach.

Automation Hub

Where Radial really shines is as an automation hub.

Instead of launching apps individually, you can trigger an Apple Shortcut or a Keyboard Maestro macro that launches an entire workspace with a single click. A second action can close the same apps when you’re done.

If you combine this with a window manager like Rectangle or Snaps of Apps, you can go even further and launch apps on specific displays and in specific Spaces with windows already arranged.

Another useful trick is reducing menu-bar clutter. Many utilities can have their core actions exposed through a Radial menu instead of living permanently in the menu bar.

Examples of apps that work well this way:

  • CleanShot X
  • Shortcuts
  • Rectangle
  • Keyboard Maestro
  • Side Notes

I also adapted my morning checklist into a Radial menu using a mix of actions:

  • Opening several daily websites in specific browsers
  • Checking new email across three mailboxes
  • Launching social media through the apps I actually use
  • Opening Sync Folders Pro and Smart Backup to verify my auto-archiving workflows for photos, music, ebooks, and video
  • Sending a predefined prompt to ChatGPT that generates my daily report
  • Logging into my self-hosted server for routine health checks

Once it’s set up, everything can be accessed from a single menu instead of hunting through menus, booksmarks and other launchers.

Details

Privacy Policy

Radial has a good privacy policy and you can read it at https://radial.appverge.net/privacy.

Radial includes a built-in AI assistant using Meta's llama-3.1-8b-instant hosted on Groq (with a Q, not K). Ideally, future versions will support additional providers.

Radial is developed in Denmark, which means it falls under EU privacy regulations.

Price

Radial offers a seven-day free trial. The full license costs €14.99 and covers five seats, which is fairly generous for a utility in this category.

Website

Radial’s website includes solid documentation and clear explanations of how the system works.

Radial – Everything at Your Cursor

✉️ Reply by email

❌