├── .gitignore ├── LICENSE ├── Open In iTerm.applescript ├── README.md ├── icon ├── Acorn.webloc ├── Image2icon.webloc ├── SVG-edit.webloc ├── macOS-10-dark.icns ├── macOS-10-light.acorn ├── macOS-10-light.icns ├── macOS-11-dark.acorn ├── macOS-11-dark.icns ├── macOS-11-light.acorn ├── macOS-11-light.icns ├── macOS-11-new-border.svg ├── macOS-11-new-dark.icns ├── macOS-11-new-dark.svg ├── macOS-11-new-light.icns └── macOS-11-new-light.svg ├── iterm ├── modifier-keys ├── Makefile ├── README.md ├── modifier-keys └── modifier-keys.c ├── screenshots ├── automation-settings.png ├── control-finder.png ├── control-iterm.png ├── control-system-events.png ├── hold-command-and-drag.png └── iterm-control-system-events.png └── test ├── Finder Test Cases.txt ├── Test Folders ├── -- │ └── README.md ├── --window │ └── README.md ├── \jason's "favorite" \test │ └── README.md ├── foo \n │ └── README.md ├── goo \g │ └── README.md ├── t:e's\t"ö t$e%s`t │ └── README.md └── test? │ └── README.md └── iTerm Test Cases.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Icon? 3 | Open In iTerm.app/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/LICENSE -------------------------------------------------------------------------------- /Open In iTerm.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/Open In iTerm.applescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/README.md -------------------------------------------------------------------------------- /icon/Acorn.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/Acorn.webloc -------------------------------------------------------------------------------- /icon/Image2icon.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/Image2icon.webloc -------------------------------------------------------------------------------- /icon/SVG-edit.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/SVG-edit.webloc -------------------------------------------------------------------------------- /icon/macOS-10-dark.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-10-dark.icns -------------------------------------------------------------------------------- /icon/macOS-10-light.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-10-light.acorn -------------------------------------------------------------------------------- /icon/macOS-10-light.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-10-light.icns -------------------------------------------------------------------------------- /icon/macOS-11-dark.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-dark.acorn -------------------------------------------------------------------------------- /icon/macOS-11-dark.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-dark.icns -------------------------------------------------------------------------------- /icon/macOS-11-light.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-light.acorn -------------------------------------------------------------------------------- /icon/macOS-11-light.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-light.icns -------------------------------------------------------------------------------- /icon/macOS-11-new-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-new-border.svg -------------------------------------------------------------------------------- /icon/macOS-11-new-dark.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-new-dark.icns -------------------------------------------------------------------------------- /icon/macOS-11-new-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-new-dark.svg -------------------------------------------------------------------------------- /icon/macOS-11-new-light.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-new-light.icns -------------------------------------------------------------------------------- /icon/macOS-11-new-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/icon/macOS-11-new-light.svg -------------------------------------------------------------------------------- /iterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/iterm -------------------------------------------------------------------------------- /modifier-keys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/modifier-keys/Makefile -------------------------------------------------------------------------------- /modifier-keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/modifier-keys/README.md -------------------------------------------------------------------------------- /modifier-keys/modifier-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/modifier-keys/modifier-keys -------------------------------------------------------------------------------- /modifier-keys/modifier-keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/modifier-keys/modifier-keys.c -------------------------------------------------------------------------------- /screenshots/automation-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/automation-settings.png -------------------------------------------------------------------------------- /screenshots/control-finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/control-finder.png -------------------------------------------------------------------------------- /screenshots/control-iterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/control-iterm.png -------------------------------------------------------------------------------- /screenshots/control-system-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/control-system-events.png -------------------------------------------------------------------------------- /screenshots/hold-command-and-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/hold-command-and-drag.png -------------------------------------------------------------------------------- /screenshots/iterm-control-system-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/screenshots/iterm-control-system-events.png -------------------------------------------------------------------------------- /test/Finder Test Cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Finder Test Cases.txt -------------------------------------------------------------------------------- /test/Test Folders/--/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/--/README.md -------------------------------------------------------------------------------- /test/Test Folders/--window/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/--window/README.md -------------------------------------------------------------------------------- /test/Test Folders/\jason's "favorite" \test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/\jason's "favorite" \test/README.md -------------------------------------------------------------------------------- /test/Test Folders/foo \n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/foo \n/README.md -------------------------------------------------------------------------------- /test/Test Folders/goo \g/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/goo \g/README.md -------------------------------------------------------------------------------- /test/Test Folders/t:e's\t"ö t$e%s`t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/t:e's\t"ö t$e%s`t/README.md -------------------------------------------------------------------------------- /test/Test Folders/test?/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/Test Folders/test?/README.md -------------------------------------------------------------------------------- /test/iTerm Test Cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakshin/open-in-iterm/HEAD/test/iTerm Test Cases.txt --------------------------------------------------------------------------------