forked from qt-creator/qt-creator
Details: Moving files so that the local layout corresponds to the layout pushed by make install. Adjust Make target, modify the resource path of the loader to find the resources in the right place. All pathes are still looked up relative to binaryPath(), libs are found via relative rpath.
12 lines
371 B
Bash
Executable File
12 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
osascript >/dev/null 2>&1 <<EOF
|
|
tell application "Terminal"
|
|
do script "$1 $2 +$3 +\"normal $4|\"; exit"
|
|
set currentTab to the result
|
|
set number of columns of currentTab to $5
|
|
set number of rows of currentTab to $6
|
|
set position of windows whose tabs contains currentTab to {$7, $8}
|
|
activate
|
|
end tell
|
|
EOF
|