|
|
|
@ -11,7 +11,7 @@ local command="cd \\\"$PWD\\\""
@@ -11,7 +11,7 @@ local command="cd \\\"$PWD\\\""
|
|
|
|
|
(( $# > 0 )) && command="${command}; $*" |
|
|
|
|
|
|
|
|
|
the_app=$( |
|
|
|
|
osascript 2>/dev/null <<EOF |
|
|
|
|
osascript 2> /dev/null <<EOF |
|
|
|
|
tell application "System Events" |
|
|
|
|
name of first item of (every process whose frontmost is true) |
|
|
|
|
end tell |
|
|
|
@ -19,7 +19,7 @@ EOF
@@ -19,7 +19,7 @@ EOF
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
[[ "$the_app" == 'Terminal' ]] && { |
|
|
|
|
osascript 2>/dev/null <<EOF |
|
|
|
|
osascript 2> /dev/null <<EOF |
|
|
|
|
tell application "System Events" |
|
|
|
|
tell process "Terminal" to keystroke "t" using command down |
|
|
|
|
tell application "Terminal" to do script "${command}" in front window |
|
|
|
@ -28,7 +28,7 @@ EOF
@@ -28,7 +28,7 @@ EOF
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[[ "$the_app" == 'iTerm' ]] && { |
|
|
|
|
osascript 2>/dev/null <<EOF |
|
|
|
|
osascript 2> /dev/null <<EOF |
|
|
|
|
tell application "iTerm" |
|
|
|
|
set current_terminal to current terminal |
|
|
|
|
tell current_terminal |
|
|
|
@ -43,7 +43,7 @@ EOF
@@ -43,7 +43,7 @@ EOF
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[[ "$the_app" == 'iTerm2' ]] && { |
|
|
|
|
osascript 2>/dev/null <<EOF |
|
|
|
|
osascript 2> /dev/null <<EOF |
|
|
|
|
tell application "iTerm2" |
|
|
|
|
tell current window |
|
|
|
|
create tab with default profile |
|
|
|
|