1
0
Fork 0

add "show/hide hidden files" functions

pull/1651/head
Bachynin Ivan 6 years ago
parent 8bfed01773
commit f53e3dd7be

@ -36,6 +36,8 @@ Functions
- `osx-rm-dir-metadata` deletes .DS\_Store, \_\_MACOSX cruft.
- `osx-ls-download-history` displays the macOS download history.
- `osx-rm-download-history` deletes the macOS download history.
- `showfiles` show hidden files in Finder.
- `hidefiles` hide hidden files from Finder.
Authors
-------

@ -0,0 +1,3 @@
# Hide hidden files from Finder.
defaults write com.apple.finder AppleShowAllFiles NO
killall Finder

@ -0,0 +1,3 @@
# Show hidden files in Finder.
defaults write com.apple.finder AppleShowAllFiles YES
killall Finder
Loading…
Cancel
Save