Skip to content

Commit ead95a9

Browse files
author
Matt Turner
committed
Merge remote-tracking branch 'upstream/master'
2 parents 308f87f + 02ee727 commit ead95a9

File tree

9 files changed

+29
-17
lines changed

9 files changed

+29
-17
lines changed

README.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ Possible values are the Profile names in your terminal preferences. iTerm ships
7171

7272
In iTerm the profile names are case sensitive.
7373

74-
**Please ensure the theme names you set are valid. If shuttle passes theme "Dagobah" and it does not exist in iTerm or OS X Terminal then your command won't run. This is because the applescripts are not making any checks to see if the theme you passed actually exists within the terminal application.**
74+
**Please ensure the theme names you set are valid. If shuttle passes theme "Dagobah" and it does not exist in iTerm, shuttle's applescripts fall back to the default profile. In iTerm this profile is called ```Default```.
75+
If you have removed ```Default``` or renamed it shuttle may not open your command.**
7576

7677
This setting can be overwritten by the command level ```"theme"``` settings
7778

@@ -206,23 +207,30 @@ If ```title``` is missing shuttle uses the menu's name and sets this as ```title
206207

207208
## Contributors
208209

209-
This project was created by Trevor Fitzgerald. I owe many thanks to the following people who have helped make Shuttle even better.
210+
This project was created by [Trevor Fitzgerald](https://github.com/fitztrev). I owe many thanks to the following people who have helped make Shuttle even better.
210211

211212
(In alphabetical order)
212213

213-
* Alex Carter
214-
* Dave Eddy
215-
* Dmitry Filimonov
216-
* Frank Enderle
217-
* Jack Weeden
218-
* Justin Swanson
214+
* [Alex Carter](https://github.com/blazeworx)
215+
* [Dave Eddy](https://github.com/bahamas10)
216+
* [Dmitry Filimonov](https://github.com/petethepig)
217+
* [Frank Enderle](https://github.com/fenderle)
218+
* [Jack Weeden](https://github.com/jackbot)
219+
* [Justin Swanson](https://github.com/geeksunny)
220+
* [Kees Fransen](https://github.com/keesfransen)
219221
* Marco Aurélio
220-
* Martin Grund
221-
* Michael Davis
222-
* Rui Rodrigues
223-
* Ryan Cohen
222+
* [Martin Grund](https://github.com/grundprinzip)
223+
* [Matt Turner](https://github.com/thshdw)
224+
* [Michael Davis](https://github.com/mpdavis)
225+
* [Morton Fox](https://github.com/mortonfox)
226+
* [pluwen](https://github.com/pluwen)
227+
* [Rui Rodrigues](https://github.com/rmrodrigues)
228+
* [Ryan Cohen](https://github.com/imryan)
229+
* [Stefan Jansen](https://github.com/steffex)
224230
* Thomas Rosenstein
225-
* Tibor Bödecs
231+
* [Thoro](https://github.com/Thoro)
232+
* [Tibor Bödecs](https://github.com/tib)
233+
* [welsonla](https://github.com/welsonla)
226234

227235
## Credits
228236

Shuttle/Shuttle-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<key>LSUIElement</key>
3030
<true/>
3131
<key>NSHumanReadableCopyright</key>
32-
<string>Copyright © 2013 Trevor Fitzgerald. All rights reserved.</string>
32+
<string>Copyright © 2016 Trevor Fitzgerald. All rights reserved.</string>
3333
<key>NSMainNibFile</key>
3434
<string>MainMenu</string>
3535
<key>NSPrincipalClass</key>

Shuttle/StatusIcon.png

172 Bytes
Loading

Shuttle/[email protected]

439 Bytes
Loading

Shuttle/StatusIconAlt.png

80 Bytes
Loading

Shuttle/[email protected]

246 Bytes
Loading

apple-scripts/iTermNightly/iTerm2-nightly-new-tab-default.applescript

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ on CommandRun(withCmd, withTheme, theTitle)
1919
tell application "iTerm"
2020
activate
2121
delay 0.2
22-
close first window
22+
try
23+
close first window
24+
end try
2325
end tell
2426

2527
tell application "iTerm"

apple-scripts/iTermNightly/iTerm2-nightly-new-window.applescript

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ on CommandRun(withCmd, withTheme, theTitle)
1818
if it is not running then
1919
activate
2020
delay 0.2
21-
close first window
21+
try
22+
close first window
23+
end try
2224
end if
2325
end tell
2426
tell application "iTerm"
@@ -34,4 +36,4 @@ on CommandRun(withCmd, withTheme, theTitle)
3436
end tell
3537
end tell
3638
end tell
37-
end CommandRun
39+
end CommandRun

shuttle.icns

118 KB
Binary file not shown.

0 commit comments

Comments
 (0)