zshify 1.0.81 → 1.0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,7 +12,7 @@ Installation is done using the [`npx` command](https://docs.npmjs.com/getting-st
12
12
  npx zshify
13
13
  ```
14
14
 
15
-     Yeah that's it, no downloads, no hassle. A minimalistic installation for the minimalistic package.
15
+ Yeah that's it, no downloads, no hassle. A minimalistic installation for the minimalistic package.
16
16
 
17
17
  ## Why Zshify?
18
18
 
@@ -20,6 +20,6 @@ Aren't you tired of your default Zsh prompt looking like this? Cluttered, ugly a
20
20
 
21
21
  > dogefather@Dogeminers-Mac-mini ~ %
22
22
 
23
-     Appearing over and over again with the usual boring info? Like you really want to know your username over and over again.
23
+ Appearing over and over again with the usual boring info? Like you really want to know your username over and over again.
24
24
 
25
-     Why not change it to it's minimal version? And that too with colors!
25
+ Why not change it to it's minimal version? And that too with colors!
package/bin/script.zsh CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/bin/zsh
2
2
  mkdir -p ~/.zshify
3
3
  curl -s https://raw.githubusercontent.com/nrjdalal/zshify/master/config/prompt.zsh | cat >~/.zshify/prompt.zsh
4
- grep "source ~/.zshify/prompt.zsh" ~/.zshrc || echo "source ~/.zshify/prompt.zsh" >>~/.zshrc
4
+ grep "source ~/.zshify/prompt.zsh" ~/.zshrc &>/dev/null || echo "source ~/.zshify/prompt.zsh" >>~/.zshrc
5
5
 
6
6
  which brew &>/dev/null || echo "\n$(tput setaf 1)brew not installed! install via -$(tput sgr0)\n/bin/bash -c \"\$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"\"
7
7
 
8
- echo "\n$(tput setaf 2)zshify enabled, to reload, run -$(tput sgr0) exec zsh"
8
+ echo "\n$(tput setaf 2)zshify enabled! to reload, run -$(tput sgr0) exec zsh"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zshify",
3
- "version": "1.0.81",
3
+ "version": "1.0.84",
4
4
  "description": "A minimalistic touch to your prompt!",
5
5
  "bin": {
6
6
  "prompt": "bin/script.zsh"