add scripts to show and hide icons on the desktop

This commit is contained in:
Sami Samhuri 2017-01-25 11:42:53 -08:00
parent f2362b0f8f
commit fac09e8991
No known key found for this signature in database
GPG key ID: F76F41F04D99808F
2 changed files with 8 additions and 0 deletions

4
hide-icons Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
defaults write com.apple.finder CreateDesktop false
killall Finder

4
show-icons Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
defaults write com.apple.finder CreateDesktop true
killall Finder