add "show/hide hidden files" functions
This commit is contained in:
parent
8bfed01773
commit
f53e3dd7be
3 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
-------
|
||||
|
|
3
modules/osx/functions/hidefiles
Normal file
3
modules/osx/functions/hidefiles
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Hide hidden files from Finder.
|
||||
defaults write com.apple.finder AppleShowAllFiles NO
|
||||
killall Finder
|
3
modules/osx/functions/showfiles
Normal file
3
modules/osx/functions/showfiles
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Show hidden files in Finder.
|
||||
defaults write com.apple.finder AppleShowAllFiles YES
|
||||
killall Finder
|
Loading…
Add table
Reference in a new issue