Skip to content

Commit f10fa34

Browse files
readme updates
1 parent 8d1b846 commit f10fa34

File tree

3 files changed

+55
-15
lines changed

3 files changed

+55
-15
lines changed

README.md

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,36 @@ $ git clone https://github.com/bryanmacfarlane/dev-macos
1212

1313
## Setup Terminal
1414

15-
Terminal, Preferences ...
15+
Setup the terminal for a transparent look and feel with a startup script to setup the environment
1616

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)
2118

22-
![prefs](res/terminalprefs.png)
19+
## Workspaces
2320

24-
open a new terminal and test it out
21+
The scripts setup three workspaces
2522

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
3244

33-
# Language Specific Setup
45+
Details on setting up go tools for Projects, Study and tools such as VS Code and GoLand.
3446

35-
[go tools an env](go.md)
47+
[go environment](go.md)

res/terminaltext.png

320 KB
Loading

terminal.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
```

0 commit comments

Comments
 (0)