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