Adding exes.

Adding all the files to run the application.
This commit is contained in:
manfromhuh
2020-07-31 11:20:53 -04:00
parent 5f0ac2ee0b
commit 51fbf15428
28 changed files with 405 additions and 2 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#show or hide hidden files in mac finder
show=$(defaults read com.apple.finder AppleShowAllFiles)
if [ "$show" == "TRUE" ]
then
defaults write com.apple.finder AppleShowAllFiles FALSE;killall Finder
else [ "$show" == "FALSE" ]
defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
fi
exit