2015-02-17 15:20:50 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2015-02-17 16:13:21 +00:00
|
|
|
# for "true full screen" call the script with "fullscreen" as the first argument
|
2015-02-17 15:20:50 +00:00
|
|
|
TRUE_FULL_SCREEN="$1"
|
|
|
|
|
|
|
|
start_terminal_and_run_tmux() {
|
|
|
|
osascript <<-EOF
|
|
|
|
tell application "Terminal"
|
|
|
|
if not (exists window 1) then reopen
|
|
|
|
activate
|
|
|
|
set winID to id of window 1
|
|
|
|
do script "tmux" in window id winID
|
|
|
|
end tell
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
resize_window_to_full_screen() {
|
|
|
|
osascript <<-EOF
|
|
|
|
tell application "Terminal"
|
|
|
|
set winID to id of window 1
|
|
|
|
tell application "Finder"
|
|
|
|
set desktopSize to bounds of window of desktop
|
|
|
|
end tell
|
|
|
|
set bounds of window id winID to desktopSize
|
|
|
|
end tell
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
resize_to_true_full_screen() {
|
|
|
|
osascript <<-EOF
|
|
|
|
tell application "Terminal"
|
2015-02-19 12:43:41 +00:00
|
|
|
# waiting for Terminal.app to start
|
2015-02-17 15:20:50 +00:00
|
|
|
delay 1
|
2015-02-19 12:43:41 +00:00
|
|
|
activate
|
|
|
|
# short wait for Terminal to gain focus
|
|
|
|
delay 0.1
|
2015-02-17 15:20:50 +00:00
|
|
|
tell application "System Events"
|
|
|
|
keystroke "f" using {control down, command down}
|
|
|
|
end tell
|
|
|
|
end tell
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
main() {
|
|
|
|
start_terminal_and_run_tmux
|
2015-02-17 16:13:21 +00:00
|
|
|
if [ "$TRUE_FULL_SCREEN" == "fullscreen" ]; then
|
2015-02-17 15:20:50 +00:00
|
|
|
resize_to_true_full_screen
|
|
|
|
else
|
|
|
|
resize_window_to_full_screen
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
main
|