-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1df9b14
Showing
7 changed files
with
225 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Toggle Hidden Files | ||
=================== | ||
|
||
OS X Automator workflow which toggles invisible files in Finder to be visible. | ||
|
||
## Installation | ||
* Move to ~/Library/Services/ | ||
|
||
## Usage | ||
* Right-Click on any file or folder in Finder and choose Services ▸ Toggle Hidden Files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleName</key> | ||
<string>Toggle Hidden Files</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en_US</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>Toggle Hidden Files</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>ch.thiemo.services.toggleHiddenFiles</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>LSHasLocalizedDisplayName</key> | ||
<true/> | ||
<key>LSUIElement</key> | ||
<string>1</string> | ||
<key>NSServices</key> | ||
<array> | ||
<dict> | ||
<key>NSMenuItem</key> | ||
<dict> | ||
<key>default</key> | ||
<string>Toggle Hidden Files</string> | ||
</dict> | ||
<key>NSMessage</key> | ||
<string>runWorkflowAsService</string> | ||
<key>NSRequiredContext</key> | ||
<dict> | ||
<key>NSApplicationIdentifier</key> | ||
<string>com.apple.finder</string> | ||
</dict> | ||
<key>NSSendFileTypes</key> | ||
<array> | ||
<string>public.item</string> | ||
</array> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
10 changes: 10 additions & 0 deletions
10
Toggle Hidden Files.workflow/Contents/Resources/German.lproj/InfoPlist.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// !!! BINARY PROPERTY LIST WARNING !!! | ||
// | ||
// The pretty-printed property list below has been created | ||
// from a binary version on disk and should not be saved as | ||
// the ASCII format is a subset of the binary representation! | ||
// | ||
{ CFBundleDisplayName = "Versteckte Dateien anzeigen"; | ||
CFBundleName = "Versteckte Dateien anzeigen"; | ||
NSHumanReadableCopyright = "Copyright © 2015 Thiemo Gamma \nAlle Rechte vorbehalten."; | ||
} |
1 change: 1 addition & 0 deletions
1
Toggle Hidden Files.workflow/Contents/Resources/German.lproj/Localizable.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
�� |
7 changes: 7 additions & 0 deletions
7
Toggle Hidden Files.workflow/Contents/Resources/German.lproj/ServicesMenu.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// !!! BINARY PROPERTY LIST WARNING !!! | ||
// | ||
// The pretty-printed property list below has been created | ||
// from a binary version on disk and should not be saved as | ||
// the ASCII format is a subset of the binary representation! | ||
// | ||
{ "Toggle Hidden Files" = "Versteckte Dateien anzeigen"; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters