3 Apple Shortcuts: My Time and Money-Saving MVPs
My Mac and iPhone automations drastically cut over 200 hours from my workload and saved me serious cash last year. Let me show you how to set up three key Shortcuts.
My iPhone's Screen Time report hit me like a ton of bricks last week: 23 hours on Instagram. Yikes. That data was a rude awakening, prompting me to reclaim my time, not just from mindless scrolling, but across my entire digital workflow. This article details three Apple Shortcuts that genuinely saved me hundreds of hours and, surprisingly, thousands of dollars in the past year alone.
What You'll Achieve with These Shortcuts
By the end of this tutorial, you'll have three powerful automations running on your Apple devices: a smart content re-formatter for quick multi-platform publishing, an automated file organizer to declutter your downloads, and a sophisticated financial tracker that keeps tabs on subscriptions and recurring expenses. I can personally attest that these aren't just minor conveniences; they represent significant time and cost savings.
What do you need before starting? Honestly, not much. Any iPhone, iPad, or Mac running a recent version of its operating system (iOS 15+, iPadOS 15+, macOS Monterey+) will work. You'll need the free Apple Shortcuts app, which comes pre-installed on most modern devices anyway. Basic familiarity with navigating your device's settings helps, but isn't strictly necessary. I'll walk you through everything, so no worries there.
Shortcut 1: The Content Re-Formatter for Multi-Platform Publishing
As a solopreneur, I'm constantly repurposing content. A blog post becomes a LinkedIn update, then a series of Tweets, then an email newsletter segment. Manually reformatting that beast took actual ages. This Shortcut streamlines it, letting me push content out faster than ever.
Step 1: Capture the Text
First, we need to get the text into the Shortcut. Open the Shortcuts app on your device. Tap the "+" icon to create a new Shortcut. Search for "Ask for Input" and add it. For "Prompt," type "Paste your content here:". Set the "Input Type" to "Text."
Step 2: Clean and Condense
Next, we'll strip out any unwanted formatting and shorten the text for different platforms. Add a "Replace Text" action. In "Text," select "Provided Input." In "Find," type " " (two spaces) and in "Replace with," type " " (one space). Repeat this to remove multiple line breaks, replacing "\n\n" with "\n".
Create a "Split Text" action, using "New Lines" as the delimiter. This creates a list of sentences or paragraphs.
To condense, add a "Get Items from List" action. Set "Get" to "First" and "Items Count" to "3." This pulls the first three sections, perfect for a short social media update.
Step 3: Output to Various Formats
Now, let's create options for sharing. Add a "Choose from Menu" action. Label the prompt "Choose Output Format." Add menu items like "LinkedIn Post (Full)", "Twitter Thread (Short)", "Email Segment (Paragraphs)".
For LinkedIn: Add a "Set Variable" action named "LinkedInOutput" and set its value to the "Provided Input" from Step 1 (the original, full text). Then add "Copy to Clipboard" choosing the "LinkedInOutput" variable. For Twitter: Add a "Repeat with Each Item" action. Inside, add a "Text" action and type "Tweet {{Repeat Item}}". Then add a "Share" action, selecting the "Text" variable. This lets you tweet segments one by one. For Email: Add a "Combine Text" action, separating items with a "New Line". Then add "Copy to Clipboard" for this combined text.
Step 4: Naming and Testing
Rename your Shortcut "Content Repurposer." Run it with a sample blog post. Check that the cleaning, condensing, and formatting options work as intended. I found that I sometimes needed to add an extra "Replace Text" for specific characters, like fancy quotes from my writing app that Twitter didn't like.
Shortcut 2: Automated File Organizer for Downloads
My Downloads folder was, for far too long, a digital graveyard. Dozens of screenshots, PDFs, and client assets all mixed together. This Shortcut sorts files into designated folders based on file type. It saves me about 20 minutes a day, easily.
Step 1: Set Up Target Folders
On your Mac, create folders within your `Documents` directory (or a similar location) called `Downloads_PDFs`, `Downloads_Images`, `Downloads_Docs`, and `Downloads_Other`. These are where files will end up.
Step 2: Get Folder Contents
Open Shortcuts. Create a new Shortcut. Search for "Get Folder Contents." Select your `Downloads` folder. Make sure "Include Subfolders" is toggled off.
Step 3: Loop Through Files and Sort
Add a "Repeat with Each Item" action. This will process each file in your Downloads folder individually.
Inside the loop, add an "If" action. For the condition, select "Repeat Item" and then "Name Extension." For the comparison, choose "is" and type "pdf".
If PDF: Inside this "If" block, add a "Move File" action. Select "Repeat Item" for the file to move. For "Destination," choose your `Downloads_PDFs` folder. Toggle "Overwrite if file exists" to off, or on, depending on your preference. I usually leave it off to prevent accidental overwrites.
Repeat this entire "If" block for other file types:
Images: `jpg`, `png`, `gif`, `heic`. Target: `Downloads_Images`. Documents: `doc`, `docx`, `txt`, `rtf`, `pages`. Target: `Downloads_Docs`.
Now, for anything left over, add an "Otherwise" block to the final "If" statement (or create a separate "If" for "file extension doesn't contain" conditions). Here you will add another "Move File" action, targeting your `Downloads_Other` folder.
Step 4: Run as an Automation
Go to the "Automation" tab in the Shortcuts app (on Mac, it's typically a separate section). Create a "New Automation." Choose "Time of Day." I set mine to run daily at 6 PM. Select "Run Shortcut," then choose your file organizer Shortcut. Crucially, turn off "Ask Before Running" so it just executes automatically.
What I'd Skip / Common Mistakes
Here are a few pitfalls I hit and how to avoid them: - Overly specific file types: Don't try to sort every single file extension on Earth. Stick to the 5-10 you use most often. A general "Other" folder is much more efficient than endless "If" conditions. - Not turning off "Ask Before Running": This one is huge. If you want true automation, don't forget this step in the Automation section. Otherwise, you'll just get a notification you have to tap manually every single time. - Forgetting to create target folders: Your Shortcut will error out immediately if the destination folders don't exist. Make them first! - Too many nested "If" statements: For complex sorting, you might consider using a Dictionary to map extensions to folders. It's more advanced but cleaner. For most people, a few "If" blocks are perfectly fine.
Shortcut 3: Subscription & Recurring Expense Tracker
This Shortcut didn't just save me time, it saved me actual money. I found I was paying for 3 streaming services I never even touched. I probably saved $300 last year just by cancelling these and others. This Shortcut isn't a replacement for a full accounting system, but it's a fantastic, quick way to keep tabs on subscriptions.
Step 1: Create a List of Subscriptions
This Shortcut relies on a simple text file. On your iCloud Drive, create a new text file named `Subscriptions.txt`. Each line should contain: `Service Name | Monthly Cost | Due Date (DD/MM)`.
For example: `Netflix | 15.99 | 01/03` `AIWiki Pro | 29.00 | 15/03` `Gym Membership | 45.00 | 05/03`
Step 2: Read the File and Parse Data
In Shortcuts, create a new Shortcut. Add a "Get File" action. Navigate to your `Subscriptions.txt` file on iCloud Drive. Ensure "Show Document Picker" is off. Make sure the "Path" refers to your `Subscriptions.txt`.
Add a "Split Text" action, using "New Lines" as the delimiter. This creates a list of each subscription entry.
Add a "Repeat with Each Item" action. Inside the loop, add another "Split Text" action on "Repeat Item," this time using " | " (space, pipe, space) as the delimiter. This gives you a list with `Service Name`, `Monthly Cost`, and `Due Date` for each subscription.
Step 3: Calculate Total and Upcoming Dates
Inside the loop, get each part of the split text: - `Service Name`: Get Item from List, Item: 1 (from the split text) - `Monthly Cost`: Get Item from List, Item: 2 (convert to number) - `Due Date`: Get Item from List, Item: 3 (convert to date)
Add a "Calculate Expression" action. Inside, add a variable named `RunningTotal` and set it to 0 before the loop. Inside the loop, `RunningTotal = RunningTotal + MonthlyCost`.
Also inside the loop, add an "If" action to check if the `Due Date` is within the next 7 days. Use "Match Date Parts" for this. You'll need to get the current date ("Get Current Date") and add 7 days to it. Compare your subscription's due date to this range.
Step 4: Present the Summary
After the loop finishes, add a "Show Alert" action. For the "Message," use a combination of text and variables:
`Total Monthly Subscriptions: ${{RunningTotal}}
Upcoming Due Dates (next 7 days): {{UpcomingSubscriptionsList}}`
You'll need to build `UpcomingSubscriptionsList` within the loop, appending each upcoming service to a text variable.
Step 5: Testing and Refinement
Run the Shortcut. Does it read the file correctly? Are the calculations accurate? Does it properly identify upcoming subscriptions? I initially messed up the date formatting, causing the comparison to fail. Make sure your `DD/MM` format matches what Shortcuts expects for date conversion.
Pros and Cons of Using Apple Shortcuts
Shortcuts are powerful, but they definitely have their quirks too.
- Pros: - Deep integration with the Apple ecosystem (apps, OS features, Siri). - Free and pre-installed on most devices, so you already have it. - Visually intuitive drag-and-drop interface – no coding required. - Can run in the background as automations, which is a lifesaver. - Actively developed by Apple, so it keeps getting better. - Cons: - Might have a steeper learning curve if you're building complex flows. - Debugging can be frustrating without proper error messages; it's a bit of an art. - Limited to Apple's pre-approved actions (no direct web scraping, for example, which is a bummer). - Sharing Shortcuts can sometimes break if paths or specific app actions aren't absolutely identical on the recipient's device.
Frequently Asked Questions
Can I share these Shortcuts with friends? Yes, you absolutely can! When viewing a Shortcut, tap the share icon and select "Share Shortcut." This generates a direct link. However, do be aware that if your Shortcut relies on specific file paths or custom app integrations, those might need to be adjusted by the recipient.
Are Shortcuts secure? Apple designs Shortcuts with security in mind. Each action requests permissions for what it can access (e.g., photos, files, contacts). You can (and should) review these permissions. Generally, they are quite secure, as long as you're not importing untrusted Shortcuts that perform suspicious actions.
What if a Shortcut stops working? First, check if any apps it interacts with have updated, as this can sometimes change how Shortcuts communicates with them. Also, take a close look at any file paths or variable names — a tiny typo can break an entire flow. Running the shortcut step-by-step in the editor often reveals exactly where it's failing.
Alternatives Worth Considering
While Apple Shortcuts are excellent, they aren't the only game in town. Depending on your specific needs, other tools might fit certain use cases better.
- Zapier: A cloud-based automation tool connecting thousands of web apps. It's great for linking services that don't natively integrate with Shortcuts. Price: Starts free, then $19.99/month for starter plan. - Keyboard Maestro (macOS only): An incredibly powerful macro tool specifically for macOS, offering deep system-level control beyond what Shortcuts provides on the Mac. Price: $36 one-time payment. - IFTTT (If This Then That): Simplistic applet-based automation for smart home devices and web services. A good entry point for non-technical users looking for basics. Price: Starts free, then $2.50/month for Pro.
What's next for you? Experiment! Seriously, don't be afraid to break things — that's how you learn. Start with simple automations and gradually add complexity. The real power of Shortcuts comes from tailoring them exactly to your unique workflow. Think about those repetitive tasks you do daily or weekly, and chances are, there's a Shortcut waiting to be built to handle it. You've got this.
Related articles
Deep Work with Slack: My 3-Hour Focus System
My quest for focused work often clashed with Slack's constant pull. Here's how I carved out three hours of uninterrupted flow, even with demanding clients.
My 30-Minute Weekly Prep: No More Overwhelm
Buried under unfinished tasks and missed deadlines? I’ve absolutely been there. This no-frills look at my weekly review system might just rescue your Fridays and free up your precious Sunday afternoons.
Remote Setup Audit: 3 Productivity Tools I Tested in 2024
Barely a quarter of employees are in the office full-time. My remote setup needs to be sharp. I tested Fellow, ClickUp, and Notion to see which one came out on top for solo work.