osx.plugin.zsh 753 Bytes
Newer Older
1
2
3
4
function savepath() {
  pwd > ~/.current_path~
}

5
function tab() {
6
7
8
9
10
savepath
osascript >/dev/null <<EOF
on do_submenu(app_name, menu_name, menu_item, submenu_item)
    -- bring the target application to the front
    tell application app_name
11
12
      activate
    end tell
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    tell application "System Events"
      tell process app_name
        tell menu bar 1
          tell menu bar item menu_name
            tell menu menu_name
              tell menu item menu_item
                tell menu menu_item
                  click menu item submenu_item
                end tell
              end tell
            end tell
          end tell
        end tell
      end tell
    end tell
end do_submenu

do_submenu("Terminal", "Shell", "New Tab", 1)
31
EOF
32
}