Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 22 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Likewise, this structure lends itself to being extended with any modules of your

<hr>

## Project Ogranization
## Project Organization

The *install.sh* script is what will be run upon executing the start-up command listed below.
This script will get Brew up and running on your machine 🍻.
The Brewfile will install a number of binarys, libraries and applications durring the Brew install process.
It is recommended that you look over this file and the supporting *brew-casks* and *brew-mas* files to customize the setup to your liking.
The Brewfile will install a number of binarys, libraries and applications during the Brew install process.
Copy link
Owner

@MrJadaml MrJadaml Apr 28, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✂️ haha, yea I had a branch on my computer that had all the "during" and "labeled" typos just sitting around for a few months that I finally just pushed up.

It is recommended that you look over this file and the supporting *brew-casks* and *brew-mas* files to customize the setup to your liking. Any applications that are paid apps must be purchased with the apple id you are using before running the script.
Note that Xcode is one of the items included in the `mas` bundle.
It has been isolated to its own *xcode-install* file as a convenience to allow for an optional install durring run time,
due to its hell-ishly long install times ⏰.
Expand All @@ -38,22 +38,22 @@ For example in the *zsh* module both *antigen* (my personal preference) and *oh-
Run the following commands:

```sh
curl -L https://api.github.com/repos/mrjadaml/mac-maker/tarball --create-dirs -o ~/projects/dotfiles.tar.gz
curl -L https://api.github.com/repos/MrJadaml/mac-maker/tarball --create-dirs -o ~/Projects/dotfiles.tar.gz
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does it not work with lowercase mrjadaml?

projects I like having lowercase on my computer. Just one less shift to press, and I'm super lazy.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it didn't work with lowercase

```

Pulls down tar file of this repo onto your machine while creating a */projects* directory.
Pulls down tar file of this repo onto your machine while creating a */Projects* directory.

```sh
tar -zxvf ~/projects/dotfiles.tar.gz -C ~/projects/
tar -zxvf ~/Projects/dotfiles.tar.gz -C ~/Projects/
```

Moves into */projects* directory and untars the tar downlaoded file.
Moves into */Projects* directory and untars the tar downlaoded file.

```sh
cd ~/projects && mv Mrjadaml* dotfiles
cd ~/Projects && mv MrJadaml* dotfiles
```

Changes the name of the untared directory from "Mrjadam-mac-maker-[SHA]" to "dotfiles"
Changes the name of the untared directory from "MrJadaml-mac-maker-[SHA]" to "dotfiles"

### ❄️ Personalize...

Expand All @@ -67,7 +67,7 @@ Please have your email and password for the Apple Store ready.
Be sure you are in the *dotfiles* directory.

```
cd ~/projects/dotfiles
cd ~/Projects/dotfiles
```

Then run the following command into your terminal:
Expand All @@ -76,6 +76,16 @@ Then run the following command into your terminal:
source install.sh
```

When it promts you to enter your password, be sure to check if it is asking for your computer password or your appleID password.

#### Accept Xcode Agreement

To accept the Xcode agreement from the terminal, run the following command in your terminal:

```
sudo xcodebuild -license accept
```

#### ␛ Vim & Tmux Setup...

##### Plugins Install
Expand Down Expand Up @@ -211,6 +221,7 @@ Then change the font to one of Powerline options. 13pt Cousine is a good choice.
- [iterm2] - A terminal emulator and replacement for Mac's default Terminal app.
- [Screenhero] - Coding oriented screen share with multi mouse/cursor.
- [Slack] - A messaging app (corporate IRC 👔).
- [Jumpcut] - Keep a record of things that you have copied (clipboard buffering).

[Atom]: https://atom.io/
[Alfred]: https://www.alfredapp.com/
Expand All @@ -223,6 +234,7 @@ Then change the font to one of Powerline options. 13pt Cousine is a good choice.
[iterm2]: https://www.iterm2.com/
[Screenhero]: https://screenhero.com/
[Slack]: https://slack.com/
[Jumpcut]: http://jumpcut.sourceforge.net/

#### App Store - Homebrew Mas

Expand Down
1 change: 1 addition & 0 deletions run/homebrew/brew-casks
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ cask 'google-chrome-canary'
cask 'iterm2'
cask 'screenhero'
cask 'slack'
cask 'jumpcut'
2 changes: 1 addition & 1 deletion run/homebrew/brew-mas
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# optional sign in to app store
# you can provide pw here, or be prompted for it durring run time
# mas signin example@mail.com "som3Rand0p@sswOrd'
# mas signin example@mail.com "som3Rand0p@sswOrd"

mas 'Evernote', id: 406056744
mas 'Memory', id: 451444120
Expand Down