Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed May 8, 2022
1 parent ebdba1b commit da40977
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 32 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Within this release you'll find the following files and folders setup:
├── package.json
└── src
├── homebrew
│   ├── hombrew-fonts.sh
│   ├── homebrew-fonts.sh
│   ├── homebrew-casks.sh
│   ├── homebrew-formulae.sh
│   └── homebrew-qlplugins.sh
Expand Down Expand Up @@ -136,7 +136,7 @@ Open your Terminal and run the commands below, and input your computer’s passw
when prompted:

``` shell
chmod +x ./macOS/macOS-setup.sh && sh ./macOS/macOS-setup.sh
chmod +x ./src/macOS/macOS-setup.sh && sh ./src/macOS/macOS-setup.sh
```

The script will install the following softwares:
Expand Down Expand Up @@ -173,7 +173,7 @@ Homebrew Cask extends Homebrew and brings its elegance, simplicity, and speed to
Open your Terminal and run the commands below:

``` shell
chmod +x ./homebrew/homebrew-casks.sh && sh ./homebrew/homebrew-casks.sh
chmod +x ./src/homebrew/homebrew-casks.sh && sh ./src/homebrew/homebrew-casks.sh
```

#### Homebrew Fonts
Expand All @@ -183,7 +183,7 @@ Caskroom Fonts lets you manage fonts from the command line through Homebrew Cask
Open your Terminal and run the commands below to install a few selected fonts:

``` shell
chmod +x ./homebrew/homebrew-fonts.sh && sh ./homebrew/homebrew-fonts.sh
chmod +x ./src/homebrew/homebrew-fonts.sh && sh ./src/homebrew/homebrew-fonts.sh
```

You now have quick access to 1946 (at the time of writing) freely-distributable
Expand All @@ -197,7 +197,7 @@ Homebrew Formulae is an online package browser for Homebrew – the macOS (and L
Open your Terminal and run the commands below:

``` shell
chmod +x ./homebrew/homebrew-formulae.sh && sh ./homebrew/homebrew-formulae.sh
chmod +x ./src/homebrew/homebrew-formulae.sh && sh ./src/homebrew/homebrew-formulae.sh
```

#### Homebrew QLPlugins
Expand All @@ -209,7 +209,7 @@ You can list your current plugins with the command `qlmanage -m plugins`.
Simply open Terminal on your computer and type the command listed below to install our curated list of Quick Look plugins for developers.

``` shell
chmod +x ./homebrew/homebrew-qlplugins.sh && sh ./homebrew/homebrew-qlplugins.sh
chmod +x ./src/homebrew/homebrew-qlplugins.sh && sh ./src/homebrew/homebrew-qlplugins.sh
```

That’s it you’re done with Homebrew!
Expand All @@ -223,7 +223,7 @@ The macOS defaults tool works directly with the macOS preferences subsystem and
Open your Terminal and run the commands below:

``` shell
chmod +x ./macOS/macOS-defaults.sh && sh ./macOS/macOS-defaults.sh
chmod +x ./src/macOS/macOS-defaults.sh && sh ./src/macOS/macOS-defaults.sh
```

#### macOS Screensavers
Expand All @@ -234,8 +234,7 @@ Explore our curated list of screensavers for macOS from
Open your Terminal and run the commands below:

``` shell
chmod +x ./macOS/macOS-screensavers.sh;
sh ./macOS/macOS-screensavers.sh;
chmod +x ./src/macOS/macOS-screensavers.sh && sh ./src/macOS/macOS-screensavers.sh
```

#### App Store Softwares
Expand All @@ -245,8 +244,7 @@ Explore our curated list of App Store softwares using the Mac App Store command-
Open your Terminal and run the commands below:

``` shell
chmod +x ./macOS/macOS-appstore.sh;
sh ./macOS/macOS-appstore.sh;
chmod +x ./src/macOS/macOS-appstore.sh && sh ./src/macOS/macOS-appstore.sh
```

## Semantic Versioning Policy
Expand Down
41 changes: 20 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rimraf": "^3.0.2"
},
"directories": {
"src": "./src"
"src": "./src"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand All @@ -48,26 +48,25 @@
],
"homepage": "https://maccfg.com",
"keywords": [
"base64",
"complex",
"crypto",
"cryptography",
"dictionary",
"entropy",
"encryption",
"memorable",
"mit-license",
"open-source",
"openssl",
"pass",
"passgen",
"passphrase",
"macOS Config",
"apple",
"config",
"configuration-management",
"devops",
"dev-tools",
"homebrew",
"mac-setup",
"mac",
"macbook-configuration",
"macbook-pro",
"macbook-setup",
"maccfg",
"preprocessor",
"random",
"secure",
"security"
"macos-config",
"macos-setup",
"macos",
"macosx",
"osx-setup",
"preferences",
"setup"
],
"license": "MIT",
"license_URI": "http://www.opensource.org/licenses/mit-license.php",
Expand All @@ -94,7 +93,7 @@
"filesize:distribution": "filesizes dist/ > dist/Report.txt",
"lint:markdown": "remark \"./*.md\" \"./src/**/*.md\"",
"release:prepare": "npm publish $(node -p \"p=require('./package.json');p.name+'-'+p.version+'.tgz'\")",
"release:publish": "npm publish --access public --ignore-scripts --@OWNER:registry='https://registry.npmjs.org'"
"release:publish": "npm publish --access public --ignore-scripts --@OWNER:registry='https://registry.npmjs.org'"
},
"type": "module",
"version": "0.0.1"
Expand Down
File renamed without changes.

0 comments on commit da40977

Please sign in to comment.