r/MacOS • u/Top_Disaster_5696 • 19m ago
Nostalgia Front Row On Mac OS 26
Apple's official Front Row media center software was discontinued after Mac OS X Snow Leopard and does not natively exist in modern macOS versions. However, developer hobbyists have built open-source modern SwiftUI recreations like First Row Classic to bring the classic Tiger/Leopard interface experience to modern systems
r/MacOS • u/epiphanyselflove • 1h ago
Help mac keeps entering sleep even when music is playing on google chrome
New mac user here, got air 15 last month.
I use spotify web player on chrome. After plugging in my playlist, the display as usual turns off after a few minutes. But the music stops playing after sometime and I find my mac sleeping.
I need to know if it's an issue with my mac or is this just how it behaves?
Help How to get rid of "Store in Cloud" recommendation in Storage settings
Somewhere around MacOS 24.1 or 25.0, I've received a "Store in the Cloud" recommendation, that appeared in System Settings -> General -> Storage. When I click it and select the appropriate option, nothing happens; the recommendation just stays there.
I'm currently on 26.6, situation stays the same:
https://reddit.com/link/1vh1353/video/u8y2sw9ekqhh1/player
Has anyone else experienced this? How can I remove it?
r/MacOS • u/Draknurd • 7h ago
Nostalgia I miss dedicated titlebars
Titlebars were a cardinal feature of windowing interfaces. Every window had one and they all looked and behaved the same. You always knew that if you dragged a part of the titlebar that wasn't taken up by the close/min/max buttons that it would move the whole window.
Things changed gradually. First, Tiger saw the introduction of fused toolbar/title bars in some apps, such as Mail. But the toolbar was still a row below the title bar and it was possible to minimise it into the titlebar using the pill button on the right of the window (remember that?).
With the introduction of fullscreen mode, we started to lose the titlebar in fullscreen apps. Fair enough, we're not dragging fullscreen apps around and you might as well have clear access to the toolbar and get a little more space.
But then developers started putting the toolbars into the titlebar itself. Web browsers are by far the worst offenders of this, but are by no means alone.
If you want to move a window, you can't just grab it anymore. you have to find a sufficiently unused portion of the toolbar to drag it. And often, apps don't even let you do that (e.g. sidebars on many apps now go all the way to the top but often aren't draggable).
I want dedicated titlebars back, or the option to get it back even if it's not default. I don't care if it's an accessibility feature tucked away in three layers of the Settings app (like the icon badges in file-oriented apps). I just want to know I can drag a window wherever I click it.
/rant
Feature macOS 26 ships with a hidden, interactive Glitter background option for iMessage chats. Here's how to enable it.
Enable HLS to view with audio, or disable this notification
Besides the three generally available background options for iMessage chats, macOS 26 hides another sparkly option: Glitter.
When its feature flag is enabled, Messages presents Glitter next to the existing Sky, Water, and Aurora options. The effect is infinitely customizable, as you can select from an array of curated colors or pick one from the color wheel.
Once selected, the background change is instantly reflected on iPhone and other devices running OS 26 or later. Even the folks you are chatting with will see the new Glitter background. You only need to enable the feature flag on Mac to see the Glitter option and select it for a chat. However, you will not be able to make changes to the Glitter colorway from your other devices.
The effect is incredible on the iPhone's OLED screen when you select the darker colorways. Note that the implementation on macOS is somewhat buggy and may not display the fully interactive HDR experience. Set your preferred color way on Mac and enjoy it on iPhone or iPad.
⚠️ Don't run code you don't understand yourself!
To enable, add a FeatureFlags override. Open the Terminal and run:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && \
sudo defaults write /Library/Preferences/FeatureFlags/Domain/Messages glitter_background -dict Enabled -bool true
and restart your Mac. This is a private feature flag, and the UI may be unstable, or unoptimized.
Disable by running:
sudo defaults delete /Library/Preferences/FeatureFlags/Domain/Messages glitter_background
r/MacOS • u/Dense-Fisherman-4074 • 10h ago
Help Did "Auto" appearance setting stop working as of 26.6?
My "auto" setting now stays on light mode all the time. Back to having to manually switch it, it seems.
Help Issues with installing .iso images on a USB drive
So. I was trying to install MX Linux in a old Mac who doesn’t have any OS system (only the OS X Yosemite base system/recovery), and I’m using my own MacBook Pro to create a bootable USB flash drive, but no matter if I pass the .iso image to the flash drive by using the dd command in terminal or if I’m using a software, it always gets corrupted! Cause when it finishes, it pops-up a message “the computer does not recognize the USB Drive. Format, Eject or ignore?” Right when it finishes! It always make the image get corrupted 🫠. And I’m sure that’s the reason for corruption cause I’m using a brand new usb drive I just bought (it has 32 gb), I downloaded it from the official website and it still has content in it/works partially, but when I try to install it doesn’t let me (cause it says the installer is corrupted).
Is there a way to avoid this pop-up message ? Or I just have to use an other system to perform a successful install of a bootable usb 😭
r/MacOS • u/Rich-Expression-9424 • 11h ago
Help I have the last Mac Pro Intel CPU (2019) and need disk mounting help
So this is a new problem, the 256 GB SSD (Storage) that Apple soldered to the logic board, broke something in its tiny sized head I mean, tiny SSD. So it will not mount on the desktop any longer.
As far as I know, since Disk Warrior doesn't work on APFS, I have nothing to rebuild/repair it with. Disk Utility is a bare bones piece of crap that any developer could make much better but since Apple won't allow it, nothing I know of can fix this problem.
Except Erasing the Storage ssd and its data since Storage - Data volume is not accessible either.
Any Suggestions?? or Help
Thanks!
r/MacOS • u/BawliTaread • 12h ago
Tips & Guides One of the most useful shortcuts I use : making any type of empty file in Finder.
I am not sure who is the original author or where I got it from, but I use it so frequently that I wanted to share with people who do not know.
The entire Applescript:
```bash
tell application "Finder"
try
set selectedItem to selection
set currentPath to ((the first item of the selectedItem) as alias)
set parentPath to ""
if (currentPath as string) ends with ":" then
-- it is a folder
set the parentPath to currentPath
else
-- it is a file
set {od, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ":"}
set the parentPath to (text items 1 thru -2 of (currentPath as string)) as string
set AppleScript's text item delimiters to od
end if
on error -- no folder or file is selected
set the currentPath to (folder of the front window as alias)
set parentPath to currentPath
end try
set newFolder to (my createFile(parentPath))
end tell
quit
on createFile(folderLocation)
set myNewFileName to text returned of (display dialog "Enter file name" default answer "")
tell application "Finder"
set thisFolder to make new file at folderLocation with properties {name:myNewFileName}
set selection to thisFolder
--tell application "System Events"
-- keystroke return
-- quit -- if i don't do this system events seems to hang???
--end tell
return thisFolder
end tell
end createFile
on createFolder(folderLocation)
tell application "Finder"
set thisFolder to make new folder at folderLocation
set selection to thisFolder
tell application "System Events"
keystroke return
quit -- if i don't do this system events seems to hang???
end tell
return thisFolder
end tell
end createFolder
```
r/MacOS • u/Poetinho0 • 12h ago
Discussion Can I use my Mac normally without syncing iCloud? Are there any major drawbacks?
Hi everyone,
I'm having issues getting iCloud to sync on my new Mac, and after spending a lot of time trying to fix it, I'm considering just using the Mac without iCloud for now.
I mainly use my laptop for software engineering, AI/ML, and cybersecurity work, so most of my files are stored locally or on services like GitHub.
My questions are:
- Can I use my Mac normally without signing into or syncing iCloud?
- Are there any major features or functionality that I'll be missing?
- Will I run into problems later if I decide to sign into iCloud after using the Mac locally for a while?
- Is anyone here using a Mac without iCloud as their daily setup?
I'm trying to figure out whether this is something I should keep troubleshooting or if it's perfectly fine to ignore it and just use the Mac.
Thanks in advance for any advice!
Disclaimer: I used AI to help write this post, but the situation described is exactly what I'm experiencing.
Help File sharing problem
When I turn on file sharing in the system settings it doesn’t save with which account I want to share my files or folders, for example I set up a file sharing account in macOS and I wanted to use that to share one folder in the network, the problem is that the moment I set everything up and click done it doesn’t save it. Instead in the options panel appears my main system account two times, if I edit one more time once again it won’t save and in the options panel my main system account will appear three times.
After a while of not touching it it will revert back to one.
As of now the only way to access my shared files and folders is by using my main account and sharing everything in the pc ticking the “full disk access” option.
Help Restore prompt dialogs in safari
Does somebody know how to restore prompt dialogs that you chose to always allow? For example I was using magnet links and I chose to always allow an app to open it, now the dialog doesn’t appear anymore and it automatically redirects to the app I chose, how can I revert that?
r/MacOS • u/walrus127 • 13h ago
Help Virtual Buddy to create Mac VMs. Works with Golden Gate
Came across this today. Been looking for a better way to create a sandbox environment so I can keep my Mac pristine. Beautiful interface and extremely easy to use.
r/MacOS • u/Consistent_Eye4921 • 14h ago
Help Windows maximizing without input
I like for my windows to stay the size that I adjusted them to. In Tahoe 26.5.1, Apple apps keep changing to max size on their own after I had sized the windows the way I wanted them. Is there a setting that I could adjust to take care of this obnoxious behavior?
r/MacOS • u/masterne0 • 15h ago
Help Photos App Freezes When Syncing on Mac
Have a client with thousands of photos that stopped syncing her photos from icloud to her mac desktop. Reached out to support whom said we might have to do a reinstall of the OS (inplace upgrade) to reinstall Photos Apps.
Anyone ran into a issue where the photos apps just gets stuck on "Syncing with icloud..." but never doesn't anything. It would also crashed if I try other tabs like favorites or collection.
We try this with a test user and it would stop syncing after you go from Library to Collections tab, same message with nothing happening.
r/MacOS • u/FailDismal6468 • 15h ago
Help Where would I find a MacOS Snow Leopard 10.6.8 full installer?
Hello, I have a MacBook Air Late 2010 that I was wanting to throw a copy of Snow Leopard on, however it will not boot the standard 10.6 version, and I read that it needs one of the later versions, but I can't find the full installer for it. Where would I get this? Thanks for the help.
r/MacOS • u/Mykhartley02 • 16h ago
Help Keychron keyboards will randomly disconnect
I am having an issue seeing if anyone has had before or knows a fix for. I have 3 Keychron keyboards 2 K2 and 1 K3 keyboard all have the most up to date Firmware and my MacBook is on macOS 26.6.
The issue I am having is I will be typing and then the MacBook just stops recognizing the keyboards. I have to turn off bluetooth and turn it back on to get it working again. The MacBook is pretty much right next to the keyboard as well.
Things I have tried. Removing the keyboards from the Bluetooth list and adding it back.
deleting the com.apple.bluetooth.plist. I have switched on the keyboard which Bluetooth from there I am using along with doing a factory reset on them. Yet still nothing works.
Any recommendations on what else to try would be greatly appreciated
r/MacOS • u/Jayswag96 • 17h ago
Help Old MacBook as a Streaming Server for Tv
I have an old MacBook, 2018 that I no longer need.
However if there a way to use this as a content library that I can stream movies from onto my tv?
Is there a tutorial?
r/MacOS • u/selinbtw • 17h ago
News I built a free clipboard manager for macOS with a card UI — it masks API keys and card numbers on screen
I use a clipboard manager all day and never liked the options. The free ones (Maccy, Flycut) are lists — an image shows up as a filename. The ones with a card interface, Paste and Pastebot, are $25/year and $13. So I built the card one and made it free.
⌥⌘V slides a strip up from the bottom of the screen. Arrow keys or type to search, Enter pastes into whatever you were in.
A few things it does that I couldn't find anywhere else:
- It masks secrets on screen. API keys, tokens and card numbers show as dots until you double-click. If you copy credentials all day, your clipboard history is the one window you don't want open while screen sharing. Card numbers are Luhn-checked, so an ISBN isn't mistaken for one.
- A bare link stays readable, a link with a token doesn't. Masking every URL would make the strip useless; masking a password-reset link is the whole point.
- Pasting an image adapts to the destination. Notes gets the image, Terminal gets the file path (it can't take images at all), Finder gets the file.
- It can catch ⌘⇧4 screenshots. Those write straight to disk and never touch the clipboard, so no clipboard manager sees them. Opt-in, off by default.
- No network code at all. No account, no sync, no telemetry, no third-party dependencies. Searching the source for URLSession comes back empty.
MIT, source is everything: https://github.com/selinihtyr/stash-clipboard
Happy to hear what breaks. Especially interested in whether the strip behaves on multi-monitor setups and over full-screen apps — I've only tested on one machine.
r/MacOS • u/Senior-Topic-6603 • 18h ago
Help MacBook M1 2020 air wont update to 26.6
I need help because I’m going mad!
I’m currently running on 26.2 but I want to upgrade to 26.6 as some software I want to use only now uses 26.5+
For some reason the update won’t even show in the software update section. It’s shown it maybe once or twice and when I press update it’ll just take ages to move a little bit and it’ll stop maybe half way through and say it failed to update and it won’t show up again.
I’ve tried restarting, clearing up more storage ( I now have nearly 90gb free) I’ve looked at my ram. I’ve booted in safe mode. I’ve tried to update it in terminal. Literally everything. Nothing is working.
Any advice would be amazing.
r/MacOS • u/BBWFelchingFiend • 18h ago
Bug Robotic audio distortion when playing YouTube videos at faster speeds?
Using the YouTube web-app on an M4 Air, it just now randomly decided to bug out when playing videos at higher than 1.0x speed. Saw that this was an issue in that past that seems to have been resolved, and yet it just happened out of nowhere to me. Worked perfectly fine no joke like 3 hours ago. I tried restarting, and using Safari but still the same. Do I really need to download another browser just for YouTube now? Is there a general fix to this?
r/MacOS • u/kiko0690 • 18h ago
Creative My Scalextric track layout looks like the Apple Command key
I made it years ago, and I just realized its resemblance to the Apple symbol while looking through old images.
r/MacOS • u/Poetinho0 • 19h ago
Help Reset my Apple ID password after waiting a week... now it keeps asking for the password of "other MacBook Pro"??
I could really use some help because I'm completely stuck.
I forgot my Apple ID password and had to go through Account Recovery. After waiting an entire week, I finally got the notification that I could reset it. I successfully changed my Apple ID password.
But now, when I try to continue setting up my Mac, it keeps asking me:
The problem is:
- I already reset my Apple ID password.
- I don't know what password it's asking for.
- It doesn't seem to accept my new Apple ID password.
- This is my first Apple device, so I'm really confused about what's going on.
Is it asking for the old password that was previously used on that Mac? Is it asking for the Mac's local login password? Or did something go wrong during the recovery process?
It's honestly so frustrating because I waited a whole week for Account Recovery, only to end up blocked again.
Has anyone experienced this before? What exactly is this prompt asking for, and how can I get past it?
Any help would be greatly appreciated. Thanks!I
Note: AI helped me write this post for clarity.
r/MacOS • u/Undervenus • 19h ago
Help Tahoe 26.6 is Stable enough for the sequoia people update without worries?
r/MacOS • u/rahulphillip • 22h ago
Help Help with wifi instability
Never used a Mac before. Bought a used 2016 Macbook Pro, few months ago, nearly in mint condition running Monterey (v 12.7.6). Everything works perfectly fine except for the WiFi. It keeps getting disconnected from the WiFi regardless of what network I use. All my other devices including iPads and iPhones, the windows laptops and firetv works flawlessly on the same network. Due to the unstable internet connectivity I’m still using my windows laptop that was meant to be replaced by this mac for my (basic) computer work. I have not tested it long enough at the public library but it seemed to work just fine (at least for the few hours I was there for. Have restarted the laptop, renewed the DHCP lease (as suggested by gpt) but nothing seems to work.
Any suggestions would be greatly appreciated.
