Stop Making CRON Jobs!
Shell Text
TL;DR:
Cron is great on always-on Unix servers and mostly terrible on Macs. It has no awareness of sleep, login state, or network availability, so scheduled jobs often just don’t run. On macOS, the real scheduling system is launchd, which understands system events and conditions—but writing launchd jobs by hand is painful. If you need reliable background automation, use a GUI tool like Lingon Pro or LaunchD Task Scheduler. For user-level automations while you’re logged in, Keyboard Maestro and Apple Shortcuts are excellent—but they can’t replace launchd for true unattended tasks.
# Cron Was Made for Always-On Unix Servers
Early in my career, I used to get annoyed when the old hands would wave away every automation problem with, "Just make a cron job."
Cron dates back to the earliest days of Unix. It's simple, dumb, and dependable: once a minute it checks a text file, and if a line in that file matches the current time, it runs the associated command. Like most Unix tools, it works great--once you learn the arcane scheduling syntax.
For example:
0 3 /Users/amerpie/noscripts/backup.sh
To cron, that means: run this noscript every day at 3:00 AM.\*
Cron was designed for machines that live in server rooms--powered on 24/7, connected to stable networks, and rarely put to sleep.
macOS laptops are… not that.
The core problem is that cron has zero situational awareness. It doesn't know or care whether:
you're logged in
the network is available
the laptop is asleep
macOS has changed anything since 1993
modern features like sandboxing, power-saving modes, or System Integrity Protection exist
Cron just runs on schedule. If your Mac is asleep at 3:00 AM, tough luck.
That limitation makes cron a poor fit for most real-world Mac automation.
# That's Why We Have launchd
Apple introduced launchd over 20 years ago with OS X 10.4 (Tiger) to replace cron and a pile of other legacy services.
Unlike cron, launchd actually understands the modern Mac environment. It can handle:
starting and stopping apps
running background tasks
scheduling jobs
managing daemons
responding to system events
Most importantly, launchd isn't limited to "run at this time." It can trigger jobs based on state and context, including:
specific times or intervals
system boot
user login
file or folder changes
network availability
hardware events
on-demand conditions
In other words, launchd is designed for the messy, mobile, power-managed world Macs actually live in.
There's just one big catch.
You don't create launchd jobs with a simple line of text. Instead, you have to write XML property list files--verbose, picky, easy to mess up, and filled with cryptic keys you're expected to understand.
For most sane people, that's a hard pass.
# Useful Third-Party Apps That Make This Easy
Fortunately, it's 2026, and no one needs to hand-craft launchd XML files anymore. Several excellent Mac apps provide friendly interfaces for building launchd jobs or similar scheduled tasks.
# [Lingon Pro](https://www.peterborgapps.com/lingon/)
Lingon has been around for more than two decades, and it's still one of the best launchd tools available.
It gives you a clean GUI for creating complex jobs that can run:
whether your Mac is awake or asleep
whether you're logged in or not
with root privileges if necessary
with "keep alive" rules that automatically restart crashed processes
If you need serious, reliable background automation on macOS, Lingon Pro is the gold standard.
Price: $23.99 one-time, or $11.99/year subnoscription
Trial: Full-featured one-week trial
# **LaunchD Task Scheduler**
This is a simpler, cheaper alternative to Lingon Pro. It doesn't have quite the same depth, but it's more than enough for many users.
Key features:
Create,
Shell Text
TL;DR:
Cron is great on always-on Unix servers and mostly terrible on Macs. It has no awareness of sleep, login state, or network availability, so scheduled jobs often just don’t run. On macOS, the real scheduling system is launchd, which understands system events and conditions—but writing launchd jobs by hand is painful. If you need reliable background automation, use a GUI tool like Lingon Pro or LaunchD Task Scheduler. For user-level automations while you’re logged in, Keyboard Maestro and Apple Shortcuts are excellent—but they can’t replace launchd for true unattended tasks.
# Cron Was Made for Always-On Unix Servers
Early in my career, I used to get annoyed when the old hands would wave away every automation problem with, "Just make a cron job."
Cron dates back to the earliest days of Unix. It's simple, dumb, and dependable: once a minute it checks a text file, and if a line in that file matches the current time, it runs the associated command. Like most Unix tools, it works great--once you learn the arcane scheduling syntax.
For example:
0 3 /Users/amerpie/noscripts/backup.sh
To cron, that means: run this noscript every day at 3:00 AM.\*
Cron was designed for machines that live in server rooms--powered on 24/7, connected to stable networks, and rarely put to sleep.
macOS laptops are… not that.
The core problem is that cron has zero situational awareness. It doesn't know or care whether:
you're logged in
the network is available
the laptop is asleep
macOS has changed anything since 1993
modern features like sandboxing, power-saving modes, or System Integrity Protection exist
Cron just runs on schedule. If your Mac is asleep at 3:00 AM, tough luck.
That limitation makes cron a poor fit for most real-world Mac automation.
# That's Why We Have launchd
Apple introduced launchd over 20 years ago with OS X 10.4 (Tiger) to replace cron and a pile of other legacy services.
Unlike cron, launchd actually understands the modern Mac environment. It can handle:
starting and stopping apps
running background tasks
scheduling jobs
managing daemons
responding to system events
Most importantly, launchd isn't limited to "run at this time." It can trigger jobs based on state and context, including:
specific times or intervals
system boot
user login
file or folder changes
network availability
hardware events
on-demand conditions
In other words, launchd is designed for the messy, mobile, power-managed world Macs actually live in.
There's just one big catch.
You don't create launchd jobs with a simple line of text. Instead, you have to write XML property list files--verbose, picky, easy to mess up, and filled with cryptic keys you're expected to understand.
For most sane people, that's a hard pass.
# Useful Third-Party Apps That Make This Easy
Fortunately, it's 2026, and no one needs to hand-craft launchd XML files anymore. Several excellent Mac apps provide friendly interfaces for building launchd jobs or similar scheduled tasks.
# [Lingon Pro](https://www.peterborgapps.com/lingon/)
Lingon has been around for more than two decades, and it's still one of the best launchd tools available.
It gives you a clean GUI for creating complex jobs that can run:
whether your Mac is awake or asleep
whether you're logged in or not
with root privileges if necessary
with "keep alive" rules that automatically restart crashed processes
If you need serious, reliable background automation on macOS, Lingon Pro is the gold standard.
Price: $23.99 one-time, or $11.99/year subnoscription
Trial: Full-featured one-week trial
# **LaunchD Task Scheduler**
This is a simpler, cheaper alternative to Lingon Pro. It doesn't have quite the same depth, but it's more than enough for many users.
Key features:
Create,
edit, and delete launchd tasks
Run jobs at intervals or on schedules (daily, weekly, monthly)
Trigger tasks based on events like:
volume mounting
user login
folder changes
Keep tasks running and auto-restart if they crash
If you want basic launchd automation without a learning curve, this $4.99 app is a solid value.
# **Keyboard Maestro**
Keyboard Maestro isn't primarily a scheduler--but it does include powerful time-based and event-based triggers.
Some of the available triggers:
Hot keys
App launch / quit / activate / deactivate
Window events
Clipboard changes
Specific times or intervals
Typed strings
USB device events
Public web URLs
MIDI input
Device connection/disconnection
Login
Network changes
The downside: Keyboard Maestro only works when:
you're logged in
the Mac is awake
the Keyboard Maestro Engine is running
So it's not a replacement for launchd. But for user-level automation, it's incredibly powerful.
For example, I have a macro that periodically checks whether Raycast, Hazel, Stream Deck, and BetterTouchTool are running--and restarts them if they're not. That's the kind of practical glue automation Keyboard Maestro excels at.
# Apple Shortcuts
Shortcuts on macOS has matured a lot, especially since macOS Tahoe. It now supports time-based automations similar to what iOS users have had for years.
But there are important limitations:
You must be logged in
The Mac must be awake
It's better suited to workflows than true background services
Still, Shortcuts can trigger actions based on:
specific apps
power conditions
hardware connections
network changes
file system events
Bluetooth devices
time of day
If you have an always-on Mac mini or studio, Shortcuts can be surprisingly capable. On a sleeping laptop, not so much.
# More Apps with Time-Based or Event Triggers
If you just need "run this thing on a schedule" without diving into launchd, these are worth a look:
[Task Till Dawn](https://appaddict.app/post/task-til-dawn-a-free-mac-automation-app) \-- Free automation tool for file management, printing, and browser tasks
**Alarm Clock Pro** \-- Far more than an alarm clock; great for scheduled app launching and noscripts
[Shortery](https://appaddict.app/post/shortery-the-missing-mac-automator) \-- Adds real triggers to Apple Shortcuts (Wi-Fi, calendar, time, etc.)
**Scheduler for Mac** \-- Lightweight app and noscript scheduler
Automator + Calendar Alerts \-- Built-in macOS trick: create an Automator workflow, then have Calendar open it at a specific time
**Launch Control** \-- A high-end launchd GUI similar to Lingon Pro, but pricier
# Bottom Line
If you're automating a real Mac--not a headless server--cron is usually the wrong tool.
For anything that needs to run reliably in the background, use launchd. And unless you genuinely enjoy editing XML by hand, use a GUI tool like Lingon Pro or LaunchD Task Scheduler to manage it.
For user-level automations while you're actively working, Keyboard Maestro and Shortcuts are fantastic.
Pick the right tool for the job, and your automations will actually work when you need them--rather than silently failing at 3:00 AM while your Mac sleeps peacefully on the nightstand.
https://redd.it/1qzmx3u
@macappsbackup
Run jobs at intervals or on schedules (daily, weekly, monthly)
Trigger tasks based on events like:
volume mounting
user login
folder changes
Keep tasks running and auto-restart if they crash
If you want basic launchd automation without a learning curve, this $4.99 app is a solid value.
# **Keyboard Maestro**
Keyboard Maestro isn't primarily a scheduler--but it does include powerful time-based and event-based triggers.
Some of the available triggers:
Hot keys
App launch / quit / activate / deactivate
Window events
Clipboard changes
Specific times or intervals
Typed strings
USB device events
Public web URLs
MIDI input
Device connection/disconnection
Login
Network changes
The downside: Keyboard Maestro only works when:
you're logged in
the Mac is awake
the Keyboard Maestro Engine is running
So it's not a replacement for launchd. But for user-level automation, it's incredibly powerful.
For example, I have a macro that periodically checks whether Raycast, Hazel, Stream Deck, and BetterTouchTool are running--and restarts them if they're not. That's the kind of practical glue automation Keyboard Maestro excels at.
# Apple Shortcuts
Shortcuts on macOS has matured a lot, especially since macOS Tahoe. It now supports time-based automations similar to what iOS users have had for years.
But there are important limitations:
You must be logged in
The Mac must be awake
It's better suited to workflows than true background services
Still, Shortcuts can trigger actions based on:
specific apps
power conditions
hardware connections
network changes
file system events
Bluetooth devices
time of day
If you have an always-on Mac mini or studio, Shortcuts can be surprisingly capable. On a sleeping laptop, not so much.
# More Apps with Time-Based or Event Triggers
If you just need "run this thing on a schedule" without diving into launchd, these are worth a look:
[Task Till Dawn](https://appaddict.app/post/task-til-dawn-a-free-mac-automation-app) \-- Free automation tool for file management, printing, and browser tasks
**Alarm Clock Pro** \-- Far more than an alarm clock; great for scheduled app launching and noscripts
[Shortery](https://appaddict.app/post/shortery-the-missing-mac-automator) \-- Adds real triggers to Apple Shortcuts (Wi-Fi, calendar, time, etc.)
**Scheduler for Mac** \-- Lightweight app and noscript scheduler
Automator + Calendar Alerts \-- Built-in macOS trick: create an Automator workflow, then have Calendar open it at a specific time
**Launch Control** \-- A high-end launchd GUI similar to Lingon Pro, but pricier
# Bottom Line
If you're automating a real Mac--not a headless server--cron is usually the wrong tool.
For anything that needs to run reliably in the background, use launchd. And unless you genuinely enjoy editing XML by hand, use a GUI tool like Lingon Pro or LaunchD Task Scheduler to manage it.
For user-level automations while you're actively working, Keyboard Maestro and Shortcuts are fantastic.
Pick the right tool for the job, and your automations will actually work when you need them--rather than silently failing at 3:00 AM while your Mac sleeps peacefully on the nightstand.
https://redd.it/1qzmx3u
@macappsbackup
Keyboardmaestro
Keyboard Maestro 11.0.4: Work Faster with Macros for macOS
Keyboard Maestro is the leading software for macOS automation. It will increase business productivity by using macros (or short cuts) with simple keystrokes.
What app to use for video presentations & tutorial recording, please?
I'm feeling dumb. I've used a Mac for a few years now, but have never used a video recorder, like I used to use Camtasia on Windows (over 10 years ago). I'm sure there are many better tools and options these days.
Mostly, this will be for screen recording tutorials and demos for software. So I'll need to record, edit, add callouts, zooms, etc. Thinking about it, I suspect there is a whole range.
I know I can just type into Google for alternatives, but I'm looking for recommendations from people who use apps like this for recommendations, please?
https://redd.it/1qzn76d
@macappsbackup
I'm feeling dumb. I've used a Mac for a few years now, but have never used a video recorder, like I used to use Camtasia on Windows (over 10 years ago). I'm sure there are many better tools and options these days.
Mostly, this will be for screen recording tutorials and demos for software. So I'll need to record, edit, add callouts, zooms, etc. Thinking about it, I suspect there is a whole range.
I know I can just type into Google for alternatives, but I'm looking for recommendations from people who use apps like this for recommendations, please?
https://redd.it/1qzn76d
@macappsbackup
Reddit
From the macapps community on Reddit
Explore this post and more from the macapps community
EPS Preview - Quick Look EPS Files in Finder
I’ve seen people asking for a quick look extension for EPS files ever since Apple removed the built-in support for quick looking EPS files in macOS 14.
I didn’t take it seriously initially because:
EPS is a dead format. The market for this is probably very small.
It’s not easy to implement it with sandbox enabled. And I don’t want to sell the app outside of Mac App Store.
But after releasing Folder Preview Pro, I felt like this project was possible because I’ve made some packages to facilitate selling apps directly on my website.
So if you’re in need of this, you can visit our website and purchase the app for one-time fee of USD $5.99.
For more info, go to anybox.ltd/eps-preview.
https://preview.redd.it/ag6lu3ah0eig1.png?width=1224&format=png&auto=webp&s=6f48d2776b42efebf83fd15de3d5bc753b1f96f2
https://redd.it/1qzt80k
@macappsbackup
I’ve seen people asking for a quick look extension for EPS files ever since Apple removed the built-in support for quick looking EPS files in macOS 14.
I didn’t take it seriously initially because:
EPS is a dead format. The market for this is probably very small.
It’s not easy to implement it with sandbox enabled. And I don’t want to sell the app outside of Mac App Store.
But after releasing Folder Preview Pro, I felt like this project was possible because I’ve made some packages to facilitate selling apps directly on my website.
So if you’re in need of this, you can visit our website and purchase the app for one-time fee of USD $5.99.
For more info, go to anybox.ltd/eps-preview.
https://preview.redd.it/ag6lu3ah0eig1.png?width=1224&format=png&auto=webp&s=6f48d2776b42efebf83fd15de3d5bc753b1f96f2
https://redd.it/1qzt80k
@macappsbackup
[OS] Itsypad – a tiny, fast scratchpad and clipboard manager for Mac
https://redd.it/1r088ae
@macappsbackup
https://redd.it/1r088ae
@macappsbackup
Droppy is no longer free.
If you want to continue to use Droppy for free, do not update to version 11.
It now requires a paid license to continue using. This is very disappointing and a surprise, as I did not see any mention that it would eventually become a paid app.
Yes, it's only $6.99, but the fact that I did not know this was coming is what is frustrating.
https://redd.it/1r05rdk
@macappsbackup
If you want to continue to use Droppy for free, do not update to version 11.
It now requires a paid license to continue using. This is very disappointing and a surprise, as I did not see any mention that it would eventually become a paid app.
Yes, it's only $6.99, but the fact that I did not know this was coming is what is frustrating.
https://redd.it/1r05rdk
@macappsbackup
Reddit
From the macapps community on Reddit
Explore this post and more from the macapps community
[OS] I built a free, open-source macOS teleprompter that highlights your noscript as you speak, with Dynamic Island overlay, floating window, and Sidecar support
https://textream.fka.dev/
https://redd.it/1r0efe9
@macappsbackup
https://textream.fka.dev/
https://redd.it/1r0efe9
@macappsbackup
textream.fka.dev
Textream — Live Teleprompter for macOS
A free macOS teleprompter that highlights your noscript in real-time as you speak. Perfect for live streams, interviews, presentations, and podcasts.
How would you describe your AI use?
We interrupt your MacApp browsing schedule to interject a brief poll that will help in planning an update to help balance how new app posts are presented and differentiated here.
Please share to what extent, if any, you use AI:
Feel free to comment what you use as well, apps or otherwise.
View Poll
https://redd.it/1r3r9ha
@macappsbackup
We interrupt your MacApp browsing schedule to interject a brief poll that will help in planning an update to help balance how new app posts are presented and differentiated here.
Please share to what extent, if any, you use AI:
Feel free to comment what you use as well, apps or otherwise.
View Poll
https://redd.it/1r3r9ha
@macappsbackup
Reddit
From the macapps community on Reddit
Explore this post and more from the macapps community
I built a free, open-source app to back up your emails locally on Mac - https://mailvaultapp.com
Hey everyone,
I built MailVault \- a free, open-source desktop app for macOS that backs up your IMAP emails to a local SQLite database on your machine.
Why I built it:
A friend of mine works in logistics. Every few months his 10GB mailbox fills up with CMR documents, invoices, and shipping confirmations — stuff he's legally required to keep. His options were: pay for more server storage, manually export emails to folders, or risk losing documents. None of those are great.
So I built MailVault. Connect your IMAP account, and it syncs everything locally. Once backed up, you can delete emails from the server to free up space — they stay searchable and accessible on your machine forever.
Key points:
\- Stores everything locally in SQLite — your data never touches any cloud or third-party server
\- Works with any IMAP provider (Gmail, Outlook, Yahoo, Fastmail, self-hosted, etc.)
\- Runs in the background from the menu bar — use it purely as a silent backup alongside your existing email client
\- Credentials stored in macOS Keychain, not in plain text
\- No tracking, no analytics, no telemetry
\- Has a "Chat View" that shows email threads like iMessage conversations
\- Built with Tauri (Rust) + React
\- Completely free, no premium tier
Links:
\- Website: https://mailvaultapp.com
\- GitHub: https://github.com/GraphicMeat/mail-vault-app
\- Requires macOS 11.0+
Would love feedback, feature requests, or bug reports. Happy to answer any questions.
https://redd.it/1r4upr3
@macappsbackup
Hey everyone,
I built MailVault \- a free, open-source desktop app for macOS that backs up your IMAP emails to a local SQLite database on your machine.
Why I built it:
A friend of mine works in logistics. Every few months his 10GB mailbox fills up with CMR documents, invoices, and shipping confirmations — stuff he's legally required to keep. His options were: pay for more server storage, manually export emails to folders, or risk losing documents. None of those are great.
So I built MailVault. Connect your IMAP account, and it syncs everything locally. Once backed up, you can delete emails from the server to free up space — they stay searchable and accessible on your machine forever.
Key points:
\- Stores everything locally in SQLite — your data never touches any cloud or third-party server
\- Works with any IMAP provider (Gmail, Outlook, Yahoo, Fastmail, self-hosted, etc.)
\- Runs in the background from the menu bar — use it purely as a silent backup alongside your existing email client
\- Credentials stored in macOS Keychain, not in plain text
\- No tracking, no analytics, no telemetry
\- Has a "Chat View" that shows email threads like iMessage conversations
\- Built with Tauri (Rust) + React
\- Completely free, no premium tier
Links:
\- Website: https://mailvaultapp.com
\- GitHub: https://github.com/GraphicMeat/mail-vault-app
\- Requires macOS 11.0+
Would love feedback, feature requests, or bug reports. Happy to answer any questions.
https://redd.it/1r4upr3
@macappsbackup
MailVault
MailVault — Free Local Email Backup for Mac | Store Emails Offline
Back up your IMAP emails locally on macOS. MailVault stores emails offline in a local archive — keep them forever, even after server deletion. Free and open source.
Apple has destroyed the Contacts app. We need about our alternative.
Contacts has never been a well-thought-out app, with myriad syncing issues, challenging groups, and edit functions. It's always felt neglected. But with the release of Tahoe, Contacts has become absolutely unusable for me. It's jumpy and lags. Grabbing information from a contact card inevitably ends up calling that contact instantly. And it is just god-awful ugly.
Does anyone else feel desperate for a better alternative?
https://redd.it/1r4w4zf
@macappsbackup
Contacts has never been a well-thought-out app, with myriad syncing issues, challenging groups, and edit functions. It's always felt neglected. But with the release of Tahoe, Contacts has become absolutely unusable for me. It's jumpy and lags. Grabbing information from a contact card inevitably ends up calling that contact instantly. And it is just god-awful ugly.
Does anyone else feel desperate for a better alternative?
https://redd.it/1r4w4zf
@macappsbackup
Reddit
From the macapps community on Reddit
Explore this post and more from the macapps community
[OS] Macabolic v3.0 - Free & Native video downloader optimized for macOS. Now with Menu Bar mode and Browser Extensions!
Hi r/macapps! 🚀
I'm back with a major update for **Macabolic**, a native macOS frontend for `yt-dlp` built entirely with SwiftUI. It's been over a month since my last post, and I've been busy implementing your feedback!
*During this journey, we've already reached* ***113 stars*** *and our* ***very first sponsor****! 🌟*
# How Macabolic stands out
While there are many downloaders out there, Macabolic focuses on being **native, lightweight, and completely free ($0)**. Unlike Electron or Java-based tools, it uses minimal system resources and feels like a first-party Apple app. It brings the power of `yt-dlp` to regular users without the CLI complexity.
# Core Features (For new users)
* 📺 **High Quality:** Supports up to 4K (2160p) downloads.
* 🌍 **Vast Site Support:** Works with YouTube and [thousands of other sites](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md).
* 🛡️ **SponsorBlock:** Automatically skips sponsors, intros, and outros.
* 🍪 **Browser Cookies:** Import cookies from your browser to bypass bot detection or access private content.
* 🎨 **Custom Presets:** Create templates for your favorite formats and codecs (AV1, VP9, H.264).
* 🌙 **Native UI:** Clean SwiftUI interface with Dark/Light mode support.
# New in v3.0 🆕
* 💎 **Menu Bar Mode:** Manage and start downloads directly from your menu bar without keeping the main window open.
* 🌐 **Browser Extensions:** Direct right-click download for **Chrome & Firefox**.
* 🔔 **Native Notifications:** Get notified instantly when your downloads are finished.
* ⚙️ **Auto-launch:** Option to start Macabolic silently in the background at login.
* 🍏 **Universal Binary:** Full native support for both Apple Silicon and Intel Macs.
**GitHub:** [https://github.com/alinuxpengui/Macabolic](https://github.com/alinuxpengui/Macabolic)
**Latest Release:** [https://github.com/alinuxpengui/Macabolic/releases/latest](https://github.com/alinuxpengui/Macabolic/releases/latest)
No ads, no tracking, no subnoscriptions. I'd love to hear your feedback or feature requests!
**Screenshots:**
https://preview.redd.it/trfd4h514jjg1.png?width=2024&format=png&auto=webp&s=dba0ceb8fc59b5789e5a54b8036dd4f3cfbf781d
https://preview.redd.it/0zk5vcb54jjg1.png?width=712&format=png&auto=webp&s=30f47144f0ced3b7fa21ffcd82ab8ba21fa61b56
https://redd.it/1r4wmbm
@macappsbackup
Hi r/macapps! 🚀
I'm back with a major update for **Macabolic**, a native macOS frontend for `yt-dlp` built entirely with SwiftUI. It's been over a month since my last post, and I've been busy implementing your feedback!
*During this journey, we've already reached* ***113 stars*** *and our* ***very first sponsor****! 🌟*
# How Macabolic stands out
While there are many downloaders out there, Macabolic focuses on being **native, lightweight, and completely free ($0)**. Unlike Electron or Java-based tools, it uses minimal system resources and feels like a first-party Apple app. It brings the power of `yt-dlp` to regular users without the CLI complexity.
# Core Features (For new users)
* 📺 **High Quality:** Supports up to 4K (2160p) downloads.
* 🌍 **Vast Site Support:** Works with YouTube and [thousands of other sites](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md).
* 🛡️ **SponsorBlock:** Automatically skips sponsors, intros, and outros.
* 🍪 **Browser Cookies:** Import cookies from your browser to bypass bot detection or access private content.
* 🎨 **Custom Presets:** Create templates for your favorite formats and codecs (AV1, VP9, H.264).
* 🌙 **Native UI:** Clean SwiftUI interface with Dark/Light mode support.
# New in v3.0 🆕
* 💎 **Menu Bar Mode:** Manage and start downloads directly from your menu bar without keeping the main window open.
* 🌐 **Browser Extensions:** Direct right-click download for **Chrome & Firefox**.
* 🔔 **Native Notifications:** Get notified instantly when your downloads are finished.
* ⚙️ **Auto-launch:** Option to start Macabolic silently in the background at login.
* 🍏 **Universal Binary:** Full native support for both Apple Silicon and Intel Macs.
**GitHub:** [https://github.com/alinuxpengui/Macabolic](https://github.com/alinuxpengui/Macabolic)
**Latest Release:** [https://github.com/alinuxpengui/Macabolic/releases/latest](https://github.com/alinuxpengui/Macabolic/releases/latest)
No ads, no tracking, no subnoscriptions. I'd love to hear your feedback or feature requests!
**Screenshots:**
https://preview.redd.it/trfd4h514jjg1.png?width=2024&format=png&auto=webp&s=dba0ceb8fc59b5789e5a54b8036dd4f3cfbf781d
https://preview.redd.it/0zk5vcb54jjg1.png?width=712&format=png&auto=webp&s=30f47144f0ced3b7fa21ffcd82ab8ba21fa61b56
https://redd.it/1r4wmbm
@macappsbackup
GitHub
yt-dlp/supportedsites.md at master · yt-dlp/yt-dlp
A feature-rich command-line audio/video downloader - yt-dlp/yt-dlp
This media is not supported in your browser
VIEW IN TELEGRAM
[OS] TypeWhisper — Speech-to-text for macOS, 100% local, no cloud - Free
https://redd.it/1r4t83f
@macappsbackup
https://redd.it/1r4t83f
@macappsbackup