How do I toggle hidden files on/off?
In previous versions of OSX this was ⌘ Command⇧ Shift.
It's not working anymore for me on macOS Big Sur.
How do I toggle hidden files on/off?
In previous versions of OSX this was ⌘ Command⇧ Shift.
It's not working anymore for me on macOS Big Sur.
I can confirm it works on Big Sur 11.1 (20C69). However I can also explain why it doesn't work sometimes.
Apple decided to create shortcuts to go backward and forward in the history, which is great! However they use the following key combinations:
The forward shortcut takes precedence over the one used to toggle hidden files. So, if you want to show hidden files, make sure to be at the end of your history so you cannot go forward, that way you will be able to toggle hidden files.
on macOS Big Sur 11.1 I had to use YES
and NO
instead of true
or false
as parameters to:
$ defaults write com.apple.finder AppleShowAllFiles
Ex:
$ defaults write com.apple.finder AppleShowAllFiles YES; killall Finder
defaults write com.apple.finder AppleShowAllFiles true; killall Finder
worked fine for me on macOS Big Sur 11.1.
– Josh Enders
Dec 25 '20 at 02:27
Shift
+;
So on a French keyboard the shortcut isFn
+Cmd
+Shift
+;
– martin jakubik Nov 11 '21 at 10:35