├── .gitignore ├── LICENSE ├── PathToGo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── PathToGo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── appIcon256@1x.png │ │ ├── appIcon512@1x.png │ │ └── appIcon512@2x.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── PathToGo.entitlements ├── ScriptService.swift ├── Scripts │ └── copyCurrentPath.scpt ├── ToastWindowController.swift ├── ToastWindowController.xib └── ViewController.swift ├── PathToGoFinderExtension ├── FinderSync.swift ├── Info.plist ├── Media.xcassets │ ├── Contents.json │ └── PathToGoExtension.imageset │ │ ├── Contents.json │ │ └── PathToGoExtension@2x.png └── PathToGoFinderExtension.entitlements ├── README.md └── screenshots ├── AppIcon.png ├── addFinderExtension.jpg ├── dragToToolBar.jpg ├── enableFinderExtension.jpg ├── multiselect.gif ├── pathToGo3.gif └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/LICENSE -------------------------------------------------------------------------------- /PathToGo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PathToGo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PathToGo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/AppDelegate.swift -------------------------------------------------------------------------------- /PathToGo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon256@1x.png -------------------------------------------------------------------------------- /PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon512@1x.png -------------------------------------------------------------------------------- /PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Assets.xcassets/AppIcon.appiconset/appIcon512@2x.png -------------------------------------------------------------------------------- /PathToGo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /PathToGo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PathToGo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Info.plist -------------------------------------------------------------------------------- /PathToGo/PathToGo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/PathToGo.entitlements -------------------------------------------------------------------------------- /PathToGo/ScriptService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/ScriptService.swift -------------------------------------------------------------------------------- /PathToGo/Scripts/copyCurrentPath.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/Scripts/copyCurrentPath.scpt -------------------------------------------------------------------------------- /PathToGo/ToastWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/ToastWindowController.swift -------------------------------------------------------------------------------- /PathToGo/ToastWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/ToastWindowController.xib -------------------------------------------------------------------------------- /PathToGo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGo/ViewController.swift -------------------------------------------------------------------------------- /PathToGoFinderExtension/FinderSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/FinderSync.swift -------------------------------------------------------------------------------- /PathToGoFinderExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/Info.plist -------------------------------------------------------------------------------- /PathToGoFinderExtension/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /PathToGoFinderExtension/Media.xcassets/PathToGoExtension.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/Media.xcassets/PathToGoExtension.imageset/Contents.json -------------------------------------------------------------------------------- /PathToGoFinderExtension/Media.xcassets/PathToGoExtension.imageset/PathToGoExtension@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/Media.xcassets/PathToGoExtension.imageset/PathToGoExtension@2x.png -------------------------------------------------------------------------------- /PathToGoFinderExtension/PathToGoFinderExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/PathToGoFinderExtension/PathToGoFinderExtension.entitlements -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/AppIcon.png -------------------------------------------------------------------------------- /screenshots/addFinderExtension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/addFinderExtension.jpg -------------------------------------------------------------------------------- /screenshots/dragToToolBar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/dragToToolBar.jpg -------------------------------------------------------------------------------- /screenshots/enableFinderExtension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/enableFinderExtension.jpg -------------------------------------------------------------------------------- /screenshots/multiselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/multiselect.gif -------------------------------------------------------------------------------- /screenshots/pathToGo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/pathToGo3.gif -------------------------------------------------------------------------------- /screenshots/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyphs21/PathToGo/HEAD/screenshots/screenshot.gif --------------------------------------------------------------------------------