File tree Expand file tree Collapse file tree 3 files changed +55
-15
lines changed Expand file tree Collapse file tree 3 files changed +55
-15
lines changed Original file line number Diff line number Diff line change @@ -12,24 +12,36 @@ $ git clone https://github.com/bryanmacfarlane/dev-macos
12
12
13
13
## Setup Terminal
14
14
15
- Terminal, Preferences ...
15
+ Setup the terminal for a transparent look and feel with a startup script to setup the environment
16
16
17
- Pro, make default
18
- Courier New 14 pt, Opacity 85%, Blur 7%
19
- In Shell tab: (this is the key that took me forever to figure out --rcfile)
20
- Run Command: /bin/bash --rcfile ~ /dev-macos/devenv.sh
17
+ [ setup terminal] ( terminal.md )
21
18
22
- ![ prefs ] ( res/terminalprefs.png )
19
+ ## Workspaces
23
20
24
- open a new terminal and test it out
21
+ The scripts setup three workspaces
25
22
26
- ``` bash
27
- [dev] ~ /Projects$ study
28
- [dev] ~ /Study$ tools
29
- [dev] ~ /Tools$ proj
30
- [dev] ~ /Projects$ aliases
31
- ```
23
+ ### ~ /Projects
24
+
25
+ Projects are contained here. Type ` proj ` to jump here.
26
+
27
+ Environments will be setup such as go setting ` GOPATH ` properly.
28
+
29
+ ### ~ /Study
30
+
31
+ Study material is contained here. Type ` study ` to jump here and setup the environment.
32
+
33
+ Environments will be setup such as go setting ` GOPATH ` properly (~ /Study/go)
34
+
35
+ Motivation was to not have ~ /Projects littered with a ton of small study projects.
36
+
37
+ ### ~ /Tools
38
+
39
+ Tools are contained here in the bin directory. Type ` tools ` to jump here.
40
+
41
+ As an example all the go tools will be installed in ~ /Tools/bin which both projects and study will use.
42
+
43
+ ## Go
32
44
33
- # Language Specific Setup
45
+ Details on setting up go tools for Projects, Study and tools such as VS Code and GoLand.
34
46
35
- [ go tools an env ] ( go.md )
47
+ [ go environment ] ( go.md )
Original file line number Diff line number Diff line change
1
+ # Mac Terminal
2
+
3
+ Terminal, Preferences ...
4
+
5
+ Pro, make default
6
+
7
+ ## Look and Feel
8
+
9
+ Courier New 14 pt, Opacity 85%, Blur 7%
10
+
11
+ ![ text] ( res/terminaltext.png )
12
+
13
+ ## Starup Script
14
+
15
+ In Shell tab:
16
+
17
+ ** Run Command:** /bin/bash --rcfile ~ /dev-macos/devenv.sh
18
+
19
+ ![ prefs] ( res/terminalprefs.png )
20
+
21
+ open a new terminal and test it out
22
+
23
+ ``` bash
24
+ [dev] ~ /Projects$ study
25
+ [dev] ~ /Study$ tools
26
+ [dev] ~ /Tools$ proj
27
+ [dev] ~ /Projects$ aliases
28
+ ```
You can’t perform that action at this time.
0 commit comments