We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3cdcb commit c684d7dCopy full SHA for c684d7d
Foo.applescript
@@ -1,5 +1,9 @@
1
-set session to load script (POSIX file "/Users/alice/Library/Application Support/iTerm/Scripts/Session.scpt")
+#Include the next three lines in all of your project scripts.
2
+set userName to do shell script "whoami"
3
+set sessionScript to "/Users/" & userName & "/Library/Application Support/iTerm/Scripts/Session.scpt"
4
+set session to load script (POSIX file sessionScript)
5
6
+#Project specific settings go here.
7
set session's server to "middleman"
8
set session's server_url to "http://0.0.0.0:4567/"
9
set session's server_path to "/Users/alice/Clients/Foo/Solutions/Web"
Foo.scpt
966 Bytes
0 commit comments