├── .gitignore ├── AtomFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── BBEditFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── BracketsFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── CopyFinderButton.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── applet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── applet.icns │ ├── applet.rsrc │ └── description.rtfd │ └── TXT.rtf ├── CotEditorFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── LICENSE ├── LTFinderButtons.sketch ├── README.md ├── SublimeTextFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── TerminalFinderButton.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── applet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── applet.icns │ ├── applet.rsrc │ └── description.rtfd │ └── TXT.rtf ├── TextMateFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── TextWranglerFinderButton.app ├── .dropbox.attr └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc ├── VSCodeFinderButton.app └── Contents │ ├── Info.plist │ ├── MacOS │ └── droplet │ ├── PkgInfo │ └── Resources │ ├── Scripts │ └── main.scpt │ ├── description.rtfd │ └── TXT.rtf │ ├── droplet.icns │ └── droplet.rsrc └── iTerm2FinderButton.app └── Contents ├── Info.plist ├── MacOS └── applet ├── PkgInfo └── Resources ├── Scripts └── main.scpt ├── applet.icns ├── applet.rsrc └── description.rtfd └── TXT.rtf /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/osx 3 | 4 | ### OSX ### 5 | *.DS_Store 6 | .AppleDouble 7 | .LSOverride 8 | 9 | # Icon must end with two \r 10 | Icon 11 | 12 | # Thumbnails 13 | ._* 14 | 15 | # Files that might appear in the root of a volume 16 | .DocumentRevisions-V100 17 | .fseventsd 18 | .Spotlight-V100 19 | .TemporaryItems 20 | .Trashes 21 | .VolumeIcon.icns 22 | .com.apple.timemachine.donotpresent 23 | 24 | # Directories potentially created on remote AFP share 25 | .AppleDB 26 | .AppleDesktop 27 | Network Trash Folder 28 | Temporary Items 29 | .apdisk 30 | 31 | # End of https://www.gitignore.io/api/osx 32 | -------------------------------------------------------------------------------- /AtomFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in Atom 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/AtomFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/AtomFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/AtomFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /AtomFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/AtomFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /BBEditFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in TextMate 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BBEditFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BBEditFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BBEditFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /BBEditFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BBEditFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /BracketsFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in Brackets 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BracketsFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BracketsFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BracketsFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /BracketsFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/BracketsFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | applet 11 | CFBundleIconFile 12 | applet 13 | CFBundleIdentifier 14 | com.apple.ScriptEditor.id.TerminalFinderButton 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | TerminalFinderButton 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 1.0 23 | CFBundleSignature 24 | aplt 25 | LSMinimumSystemVersionByArchitecture 26 | 27 | x86_64 28 | 10.6 29 | 30 | LSRequiresCarbon 31 | 32 | WindowState 33 | 34 | bundleDividerCollapsed 35 | 36 | bundlePositionOfDivider 37 | 0 38 | dividerCollapsed 39 | 40 | eventLogLevel 41 | 0 42 | name 43 | ScriptWindowState 44 | positionOfDivider 45 | 1066 46 | savedFrame 47 | 1437 101 905 1317 0 0 2560 1418 48 | selectedTab 49 | log 50 | 51 | LSBackgroundOnly 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CopyFinderButton.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CopyFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CopyFinderButton.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CopyFinderButton.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /CopyFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf810 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | {\*\expandedcolortbl;;} 5 | } -------------------------------------------------------------------------------- /CotEditorFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in Atom 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CotEditorFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CotEditorFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CotEditorFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /CotEditorFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/CotEditorFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright © 2016 Lex Tang, http://lexrus.com 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the “Software”), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in 12 | all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /LTFinderButtons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/LTFinderButtons.sketch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## LTFinderButtons 2 | My Finder buttons collection for macOS. 3 | 4 | ![ltfinderbuttons 2x](https://cloud.githubusercontent.com/assets/219689/21391457/c4c27c62-c7c6-11e6-9271-860658873934.png) 5 | 6 | ## Buttons 7 | - [x] Terminal 8 | - [x] iTerm2 (2.9+) 9 | - [x] TextMate 10 | - [x] Sublime Text 3 11 | - [x] Atom 12 | - [x] Brackets 13 | - [x] CotEditor 14 | - [x] BBEdit 15 | - [x] TextWrangler 16 | - [x] VSCode 17 | 18 | ## Usage 19 | Download or `git clone` the buttons in a proper place. Hold on command button and drag each one into your Finder toolbar. 20 | 21 | ## Contribute a button 22 | 0. Fork this repo. 23 | 1. Duplicate iTerm2FinderButton.app and rename it to MyShinnyFinderButton.app. 24 | 2. Open `MyShinnyFinderButton.app/Contents/Resources/Scripts/main.scpt` with Script Editor then you gonna know what to do. 25 | 3. Open LTFinderButtons.sketch and draw your button. 26 | 4. Export the `iconset` folders from Sketch. 27 | 5. Convert images into icns files one by one (e.g. `iconutil -c icns MyShinnyFinderButton.iconset`) 28 | 6. Replace `MyShinnyFinderButton.app/Contents/Resources/droplet.icns` with your icns. 29 | 7. Send a pull request. 30 | 31 | 32 | ## Contacts 33 | [Lex Tang](https://github.com/lexrus/) ([@lexrus on Twitter](https://twitter.com/lexrus/)) 34 | 35 | ## License 36 | This project is distributed under the terms and conditions of the MIT license. 37 | -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleIdentifier 29 | com.apple.ScriptEditor.id.E0387C65-E83D-4AE3-B9A7-52CCF59B950E 30 | CFBundleInfoDictionaryVersion 31 | 6.0 32 | CFBundleName 33 | Open in Sublime Text 34 | CFBundlePackageType 35 | APPL 36 | CFBundleSignature 37 | dplt 38 | LSMinimumSystemVersionByArchitecture 39 | 40 | x86_64 41 | 10.6 42 | 43 | LSRequiresCarbon 44 | 45 | WindowState 46 | 47 | bundleDividerCollapsed 48 | 49 | bundlePositionOfDivider 50 | 0.0 51 | dividerCollapsed 52 | 53 | eventLogLevel 54 | 2 55 | name 56 | ScriptWindowState 57 | positionOfDivider 58 | 333 59 | savedFrame 60 | 166 393 602 597 0 0 2560 1417 61 | selectedTab 62 | result 63 | 64 | LSBackgroundOnly 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/SublimeTextFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/SublimeTextFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/SublimeTextFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /SublimeTextFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/SublimeTextFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | applet 11 | CFBundleIconFile 12 | applet 13 | CFBundleIdentifier 14 | com.apple.ScriptEditor.id.TerminalButton 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | TerminalButton 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 1.14 23 | CFBundleSignature 24 | aplt 25 | LSBackgroundOnly 26 | 27 | LSMinimumSystemVersionByArchitecture 28 | 29 | x86_64 30 | 10.6 31 | 32 | LSRequiresCarbon 33 | 34 | WindowState 35 | 36 | bundleDividerCollapsed 37 | 38 | bundlePositionOfDivider 39 | 0.0 40 | dividerCollapsed 41 | 42 | eventLogLevel 43 | 2 44 | name 45 | ScriptWindowState 46 | positionOfDivider 47 | 534 48 | savedFrame 49 | 18 116 700 672 0 0 1280 800 50 | selectedTab 51 | description 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TerminalFinderButton.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TerminalFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TerminalFinderButton.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TerminalFinderButton.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /TerminalFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf830 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | {\*\expandedcolortbl;;} 5 | } -------------------------------------------------------------------------------- /TextMateFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in TextMate 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextMateFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextMateFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextMateFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /TextMateFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextMateFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/.dropbox.attr: -------------------------------------------------------------------------------- 1 | {"mac": {"com.apple.FinderInfo": {"data": "QUFBQUFBQUFBQUFFQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0="}}} -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleInfoDictionaryVersion 29 | 6.0 30 | CFBundleName 31 | Open in TextMate 32 | CFBundlePackageType 33 | APPL 34 | CFBundleSignature 35 | dplt 36 | LSMinimumSystemVersionByArchitecture 37 | 38 | x86_64 39 | 10.6 40 | 41 | LSRequiresCarbon 42 | 43 | WindowState 44 | 45 | dividerCollapsed 46 | 47 | eventLogLevel 48 | -1 49 | name 50 | ScriptWindowState 51 | positionOfDivider 52 | 333 53 | savedFrame 54 | 71 146 602 597 0 0 1440 878 55 | selectedTabView 56 | result 57 | 58 | LSBackgroundOnly 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextWranglerFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextWranglerFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextWranglerFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /TextWranglerFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/TextWranglerFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleDocumentTypes 10 | 11 | 12 | CFBundleTypeExtensions 13 | 14 | * 15 | 16 | CFBundleTypeOSTypes 17 | 18 | **** 19 | 20 | CFBundleTypeRole 21 | Viewer 22 | 23 | 24 | CFBundleExecutable 25 | droplet 26 | CFBundleIconFile 27 | droplet 28 | CFBundleIdentifier 29 | com.apple.ScriptEditor.id.E0387C65-E83D-4AE3-B9A7-52CCF59B950E 30 | CFBundleInfoDictionaryVersion 31 | 6.0 32 | CFBundleName 33 | Open in Visual Studio Code 34 | CFBundlePackageType 35 | APPL 36 | CFBundleSignature 37 | dplt 38 | LSMinimumSystemVersionByArchitecture 39 | 40 | x86_64 41 | 10.6 42 | 43 | LSRequiresCarbon 44 | 45 | WindowState 46 | 47 | bundleDividerCollapsed 48 | 49 | bundlePositionOfDivider 50 | 0.0 51 | dividerCollapsed 52 | 53 | eventLogLevel 54 | 2 55 | name 56 | ScriptWindowState 57 | positionOfDivider 58 | 333 59 | savedFrame 60 | 166 393 602 597 0 0 2560 1417 61 | selectedTab 62 | result 63 | 64 | LSBackgroundOnly 65 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/MacOS/droplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/VSCodeFinderButton.app/Contents/MacOS/droplet -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLdplt -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/VSCodeFinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf160 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | } -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/Resources/droplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/VSCodeFinderButton.app/Contents/Resources/droplet.icns -------------------------------------------------------------------------------- /VSCodeFinderButton.app/Contents/Resources/droplet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/VSCodeFinderButton.app/Contents/Resources/droplet.rsrc -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleAllowMixedLocalizations 6 | 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | applet 11 | CFBundleIconFile 12 | applet 13 | CFBundleIdentifier 14 | com.apple.ScriptEditor.id.button 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | button 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 1.0 23 | CFBundleSignature 24 | aplt 25 | LSMinimumSystemVersionByArchitecture 26 | 27 | x86_64 28 | 10.6 29 | 30 | LSRequiresCarbon 31 | 32 | WindowState 33 | 34 | bundleDividerCollapsed 35 | 36 | bundlePositionOfDivider 37 | 0 38 | dividerCollapsed 39 | 40 | eventLogLevel 41 | 2 42 | name 43 | ScriptWindowState 44 | positionOfDivider 45 | 421 46 | savedFrame 47 | 1483 244 700 672 0 0 2560 1418 48 | selectedTab 49 | description 50 | 51 | LSBackgroundOnly 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/MacOS/applet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/iTerm2FinderButton.app/Contents/MacOS/applet -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLaplt -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/Resources/Scripts/main.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/iTerm2FinderButton.app/Contents/Resources/Scripts/main.scpt -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/Resources/applet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/iTerm2FinderButton.app/Contents/Resources/applet.icns -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/Resources/applet.rsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfinal/LTFinderButtons/2e18a29a74e37ba2dbd8e35a3abb1d4048a6b48d/iTerm2FinderButton.app/Contents/Resources/applet.rsrc -------------------------------------------------------------------------------- /iTerm2FinderButton.app/Contents/Resources/description.rtfd/TXT.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf810 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | {\*\expandedcolortbl;;} 5 | } --------------------------------------------------------------------------------