Skip to content

Instantly share code, notes, and snippets.

View jancodes's full-sized avatar

Jansen Li jancodes

  • jansenli89@gmail.com
  • New York
  • 10:39 (UTC -04:00)
View GitHub Profile
@jancodes
jancodes / Open iterm tab here
Created February 27, 2016 18:12 — forked from eric-hu/Open iterm tab here
Apple script to open an iterm2 tab from right-clicking on a file or folder in Finder. To use: (1) Open Automator (2) Create a new service (3) Change "Service receives selected" drop downs to "Files or folders" in "Finder" (4) Select "Run applescript" from the sidebar, then paste this script in and save
-- Adapted from these sources:
-- http://peterdowns.com/posts/open-iterm-finder-service.html
-- https://gist.github.com/cowboy/905546
--
-- Modified to work with files as well, cd-ing to their container folder
on run {input, parameters}
tell application "Finder"
set my_file to first item of input
set filetype to (kind of (info for my_file))
-- Treats OS X applications as files. To treat them as folders, integrate this SO answer: