Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Christian Salzmann-Jaeckel
tmux-continuum
Commits
061f024c
Unverified
Commit
061f024c
authored
Feb 19, 2015
by
Bruno Sutic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfixes for Terminal.app and iTerm tmux start scripts
parent
2ddf7b9c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
CHANGELOG.md
CHANGELOG.md
+1
-0
scripts/handle_tmux_automatic_start/osx_iterm_start_tmux.sh
scripts/handle_tmux_automatic_start/osx_iterm_start_tmux.sh
+5
-0
scripts/handle_tmux_automatic_start/osx_terminal_start_tmux.sh
...ts/handle_tmux_automatic_start/osx_terminal_start_tmux.sh
+4
-0
No files found.
CHANGELOG.md
View file @
061f024c
# Changelog
### master
-
bugfixes for 'tmux auto start' OS X Terminal.app and iTerm scripts
### v2.1.0, 2015-02-18
-
enable "tmux auto start" for OS X
...
...
scripts/handle_tmux_automatic_start/osx_iterm_start_tmux.sh
View file @
061f024c
...
...
@@ -42,7 +42,12 @@ resize_window_to_full_screen() {
resize_to_true_full_screen
()
{
osascript
<<-
EOF
tell application "iTerm"
# wait for iTerm to start
delay 1
activate
# short wait for iTerm to gain focus
delay 0.1
# Command + Enter for fullscreen
tell i term application "System Events"
key code 36 using {command down}
end tell
...
...
scripts/handle_tmux_automatic_start/osx_terminal_start_tmux.sh
View file @
061f024c
...
...
@@ -29,7 +29,11 @@ resize_window_to_full_screen() {
resize_to_true_full_screen
()
{
osascript
<<-
EOF
tell application "Terminal"
# waiting for Terminal.app to start
delay 1
activate
# short wait for Terminal to gain focus
delay 0.1
tell application "System Events"
keystroke "f" using {control down, command down}
end tell
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment